|
|
|
@ -19,6 +19,9 @@ import com.fr.solution.plugin.chart.echarts.common.plot.EChartsPlot;
|
|
|
|
|
import com.fr.solution.plugin.chart.echarts.common.theme.EChartsTheme; |
|
|
|
|
import com.fr.solution.plugin.chart.echarts.common.title.EChartsTitle; |
|
|
|
|
import com.fr.solution.plugin.chart.echarts.common.tooltip.EChartsTooltip; |
|
|
|
|
import com.fr.stable.fun.FunctionHelper; |
|
|
|
|
import com.fr.stable.fun.FunctionProcessor; |
|
|
|
|
import com.fr.stable.fun.impl.AbstractFunctionProcessor; |
|
|
|
|
import com.fr.stable.xml.XMLPrintWriter; |
|
|
|
|
import com.fr.stable.xml.XMLReadable; |
|
|
|
|
import com.fr.stable.xml.XMLableReader; |
|
|
|
@ -28,6 +31,18 @@ import com.fr.stable.xml.XMLableReader;
|
|
|
|
|
*/ |
|
|
|
|
public class ECharts extends Chart { |
|
|
|
|
|
|
|
|
|
private static final FunctionProcessor P = new AbstractFunctionProcessor() { |
|
|
|
|
@Override |
|
|
|
|
public int getId() { |
|
|
|
|
return FunctionHelper.generateFunctionID("com.fr.solution.plugin.chart.echarts"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public String getLocaleKey() { |
|
|
|
|
return "ECharts"; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
private EChartsTheme theme; |
|
|
|
|
private EChartsTooltip tooltip; |
|
|
|
|
|
|
|
|
|