package jp.dip.arimodoki.model.data;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
public class ChartDoughnutDataSet {
private int[] data = null;
private String[] backgroundColor = null;
private String[] hoverBackgroundColor = null;
public int[] getData() {
return data;
}
public void setData(int[] data) {
this.data = data;
}
public String[] getBackgroundColor() {
return backgroundColor;
}
public void setBackgroundColor(String[] backgroundColor) {
this.backgroundColor = backgroundColor;
}
public String[] getHoverBackgroundColor() {
return hoverBackgroundColor;
}
public void setHoverBackgroundColor(String[] hoverBackgroundColor) {
this.hoverBackgroundColor = hoverBackgroundColor;
}
}
|