01 |
<?xml version="1.0" encoding="UTF-8"?> |
02 |
<anychart> |
03 |
<charts> |
04 |
<chart> |
05 |
<data_plot_settings default_series_type="Bar"> |
06 |
<bar_series point_padding="0"> |
07 |
<tooltip_settings enabled="true"> |
08 |
<font bold="False" /> |
09 |
<format><![CDATA[Series name: {%SeriesName} |
10 |
Point name: {%Name} |
11 |
Point value: {%YValue}]]></format> |
12 |
</tooltip_settings> |
13 |
</bar_series> |
14 |
</data_plot_settings> |
15 |
<data> |
16 |
<series name="Quarter 1"> |
17 |
<point name="John" y="10000" /> |
18 |
<point name="Jake" y="12000" /> |
19 |
<point name="Peter" y="18000" /> |
20 |
</series> |
21 |
<series name="Quarter 2"> |
22 |
<point name="John" y="12000"> |
23 |
<tooltip> |
24 |
<format><![CDATA[Custom text: John - 12 thousands.]]></format> |
25 |
</tooltip> |
26 |
</point> |
27 |
<point name="Jake" y="15000"> |
28 |
<tooltip> |
29 |
<format><![CDATA[Custom text: Jake - 15 k.]]></format> |
30 |
</tooltip> |
31 |
</point> |
32 |
<point name="Peter" y="16000"> |
33 |
<tooltip> |
34 |
<format><![CDATA[Custom text: Peter is the best! (16 000)]]></format> |
35 |
</tooltip> |
36 |
</point> |
37 |
</series> |
38 |
<series name="Quarter 3"> |
39 |
<tooltip> |
40 |
<format><![CDATA[Percentage to total: {%YPercentOfTotal}% |
41 |
Percentage to all with this name: {%YPercentOfCategory}% |
42 |
Percentage to all series: {%YPercentOfSeries}% |
43 |
Maximal value on this chart: {%YAxisMax}{numDecimals:0} |
44 |
Minimal value in this chart: {%YAxisMin}{numDecimals:0}]]></format> |
45 |
</tooltip> |
46 |
<point name="John" y="4000" /> |
47 |
<point name="Jake" y="17000" /> |
48 |
<point name="Peter" y="11000" /> |
49 |
</series> |
50 |
</data> |
51 |
<chart_settings> |
52 |
<title enabled="false" /> |
53 |
<axes> |
54 |
<y_axis enabled="true"> |
55 |
<scale minimum="0" /> |
56 |
</y_axis> |
57 |
<x_axis enabled="true" /> |
58 |
</axes> |
59 |
</chart_settings> |
60 |
</chart> |
61 |
</charts> |
62 |
</anychart> |