-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
58 lines (57 loc) · 3.58 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<plugin>
<id>com.fr.solution.plugin.chart.echarts</id>
<name><![CDATA[ECharts图表]]></name>
<active>yes</active>
<version>3.1</version>
<env-version>8.0</env-version>
<jartime>2016-05-28</jartime>
<vendor email="[email protected]">solution</vendor>
<description><![CDATA[ECharts图表,源码和效果图可查看<a href="http://www.finedevelop.com:2015/projects/FS/repos/plugin-echarts-public">这里</a>。如果有其他类型的图表开发需求,可以联系[email protected]。]]></description>
<change-notes><![CDATA[
<p>[2017-05-16]柱状图、折线图、漏斗图、箱线图、仪表盘、散点图</p>
<p>[2016-02-18]饼图(支持多分类饼图)</p>
<p>[2016-03-03]增加国际化支持(美国英语)</p>
<p>[2016-05-28]兼容最新的API升级</p>
<p>[2016-06-29]升级API等级,重新打包</p>
]]></change-notes>
<extra-core>
<LocaleFinder class="com.fr.solution.plugin.chart.echarts.common.EChartsLocaleFinder"/>
<JavaScriptFileHandler class="com.fr.solution.plugin.chart.echarts.common.EChartsFileLoader"/>
</extra-core>
<extra-report/>
<extra-designer/>
<extra-platform/>
<extra-chart>
<IndependentChartProvider class="com.fr.solution.plugin.chart.echarts.pie.EChartsPie"
plotID="EChartsPiePlot"/>
<IndependentChartProvider class="com.fr.solution.plugin.chart.echarts.bar.EChartsBar"
plotID="EChartsBarPlot"/>
<IndependentChartProvider class="com.fr.solution.plugin.chart.echarts.line.EChartsLine"
plotID="EChartsLinePlot"/>
<IndependentChartProvider class="com.fr.solution.plugin.chart.echarts.scatter.EChartsScatter"
plotID="EChartsScatterPlot"/>
<IndependentChartProvider class="com.fr.solution.plugin.chart.echarts.boxplot.EChartsBoxplot"
plotID="EChartsBoxplotPlot"/>
<IndependentChartProvider class="com.fr.solution.plugin.chart.echarts.funnel.EChartsFunnel"
plotID="EChartsFunnelPlot"/>
<IndependentChartProvider class="com.fr.solution.plugin.chart.echarts.gauge.EChartsGauge"
plotID="EChartsGaugePlot"/>
</extra-chart>
<extra-chart-designer>
<IndependentChartUIProvider class="com.fr.solution.plugin.chart.echarts.pie.EChartsPieUI"
plotID="EChartsPiePlot"/>
<IndependentChartUIProvider class="com.fr.solution.plugin.chart.echarts.bar.EChartsBarUI"
plotID="EChartsBarPlot"/>
<IndependentChartUIProvider class="com.fr.solution.plugin.chart.echarts.line.EChartsLineUI"
plotID="EChartsLinePlot"/>
<IndependentChartUIProvider class="com.fr.solution.plugin.chart.echarts.scatter.EChartsScatterUI"
plotID="EChartsScatterPlot"/>
<IndependentChartUIProvider class="com.fr.solution.plugin.chart.echarts.boxplot.EChartsBoxplotUI"
plotID="EChartsBoxplotPlot"/>
<IndependentChartUIProvider class="com.fr.solution.plugin.chart.echarts.funnel.EChartsFunnelUI"
plotID="EChartsFunnelPlot"/>
<IndependentChartUIProvider class="com.fr.solution.plugin.chart.echarts.gauge.EChartsGaugeUI"
plotID="EChartsGaugePlot"/>
</extra-chart-designer>
</plugin>