|
@@ -10,16 +10,10 @@ public class EchartDataVo {
|
|
|
private String name;
|
|
|
private String xAxis;
|
|
|
|
|
|
- public String getColor() {
|
|
|
- return color;
|
|
|
- }
|
|
|
-
|
|
|
- public void setColor(String color) {
|
|
|
- this.color = color;
|
|
|
- }
|
|
|
+ private ItemStyle itemStyle;
|
|
|
|
|
|
private String time;
|
|
|
- private String color;
|
|
|
+
|
|
|
|
|
|
public String getName() {
|
|
|
return name;
|
|
@@ -44,4 +38,27 @@ public class EchartDataVo {
|
|
|
public void setTime(String time) {
|
|
|
this.time = time;
|
|
|
}
|
|
|
+
|
|
|
+ public ItemStyle getItemStyle() {
|
|
|
+ return itemStyle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemStyle(ItemStyle itemStyle) {
|
|
|
+ this.itemStyle = itemStyle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public class ItemStyle
|
|
|
+ {
|
|
|
+
|
|
|
+ private String color;
|
|
|
+ public String getColor() {
|
|
|
+ return color;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setColor(String color) {
|
|
|
+ this.color = color;
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|