com.fastchar.extjs.databoard.FastDataboardChartPieItemInfo 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 FastDataboardChartPieItemInfo extends FastDataboardDataInfo {
private String chartId;
private String title;
public String getTitle() {
return title;
}
public FastDataboardChartPieItemInfo setTitle(String title) {
this.title = title;
return this;
}
public String getChartId() {
return chartId;
}
public FastDataboardChartPieItemInfo setChartId(String chartId) {
this.chartId = chartId;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy