You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# AbstractECharts类介绍
|
|
|
|
|
|
|
|
### AbstractECharts 继承抽象类AbstractChartWithData,需要实现几个重要的方法
|
|
|
|
|
|
|
|
//改图表类型对应的ID,同plugin.xml中定义的plotID
|
|
|
|
|
|
|
|
`public String getID()`
|
|
|
|
|
|
|
|
// 生成图表配置属性的方法,最终用于生成一个JSON格式的数据到web端
|
|
|
|
|
|
|
|
`public JSONObject createAttributeConfig(ChartWebParaProvider chartWebPara)`
|
|
|
|
|
|
|
|
// 读取xml中相关配置,基本数据类型可重写readAttr
|
|
|
|
|
|
|
|
`public void readXML(XMLableReader reader)`
|
|
|
|
|
|
|
|
// 各种设置信息保存到xml文件中,基本数据类型可重写readAttr
|
|
|
|
|
|
|
|
`public void writeXML(XMLPrintWriter writer)`
|