com.fastchar.extjs.databoard.FastDataboardChartLineItemInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-extjs Show documentation
Show all versions of fastchar-extjs Show documentation
FastChar-ExtJs is a Java Web framework that uses extjs libraries.Quickly build a background management system
package com.fastchar.extjs.databoard;
public class FastDataboardChartLineItemInfo extends FastDataboardDataInfo {
private String chartId;
private String title;
private String date;
public String getTitle() {
return title;
}
/**
* 折线图的标题
*/
public FastDataboardChartLineItemInfo setTitle(String title) {
this.title = title;
return this;
}
public String getChartId() {
return chartId;
}
public FastDataboardChartLineItemInfo setChartId(String chartId) {
this.chartId = chartId;
return this;
}
public String getDate() {
return date;
}
/**
* x坐标的标题
*/
public FastDataboardChartLineItemInfo setDate(String date) {
this.date = date;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy