01 |
<?xml version="1.0" encoding="UTF-8"?> |
02 |
<anychart> |
03 |
<settings> |
04 |
<animation enabled="True" /> |
05 |
</settings> |
06 |
<charts> |
07 |
<chart plot_type="CategorizedVertical"> |
08 |
<data_plot_settings default_series_type="Bar"> |
09 |
<bar_series group_padding="0.3" style="AquaLight"> |
10 |
<label_settings enabled="true"> |
11 |
<background enabled="false" /> |
12 |
<position anchor="Center" valign="Center" halign="Center" /> |
13 |
<font color="White" bold="true"> |
14 |
<effects> |
15 |
<drop_shadow enabled="true" distance="1" angle="45" blur_x="1.5" blur_y="1.5" strength="2" opacity="0.5" /> |
16 |
</effects> |
17 |
</font> |
18 |
<format><![CDATA[{%Value}{numDecimals:0}]]></format> |
19 |
</label_settings> |
20 |
<tooltip_settings enabled="True"> |
21 |
<background> |
22 |
<border color="DarkColor(%Color)" /> |
23 |
</background> |
24 |
<format><![CDATA[Name: {%Name} |
25 |
Value: {%YValue}{numDecimals:2} |
26 |
Ratio: {%YPercentOfCategory}{numDecimals:1}%]]></format> |
27 |
</tooltip_settings> |
28 |
<bar_style> |
29 |
<fill opacity="1" /> |
30 |
<states> |
31 |
<hover color="White" /> |
32 |
</states> |
33 |
</bar_style> |
34 |
</bar_series> |
35 |
</data_plot_settings> |
36 |
<chart_settings> |
37 |
<title enabled="true"> |
38 |
<text><![CDATA[Multi-Series: Stacked with AquaLight style]]></text> |
39 |
</title> |
40 |
<axes> |
41 |
<y_axis position="Left"> |
42 |
<scale mode="Stacked" /> |
43 |
<title> |
44 |
<text><![CDATA[Value]]></text> |
45 |
</title> |
46 |
</y_axis> |
47 |
<x_axis> |
48 |
<labels padding="-5" /> |
49 |
<title> |
50 |
<text><![CDATA[Month]]></text> |
51 |
</title> |
52 |
</x_axis> |
53 |
</axes> |
54 |
</chart_settings> |
55 |
<data> |
56 |
<series name="Series 1"> |
57 |
<point name="Jan" y="297" /> |
58 |
<point name="Feb" y="184" /> |
59 |
<point name="Mar" y="136" /> |
60 |
<point name="Apr" y="142" /> |
61 |
<point name="May" y="228" /> |
62 |
</series> |
63 |
<series name="Series 2"> |
64 |
<point name="Jan" y="243" /> |
65 |
<point name="Feb" y="255" /> |
66 |
<point name="Mar" y="199" /> |
67 |
<point name="Apr" y="186" /> |
68 |
<point name="May" y="145" /> |
69 |
</series> |
70 |
<series name="Series 3"> |
71 |
<point name="Jan" y="235" /> |
72 |
<point name="Feb" y="156" /> |
73 |
<point name="Mar" y="177" /> |
74 |
<point name="Apr" y="242" /> |
75 |
<point name="May" y="267" /> |
76 |
</series> |
77 |
<series name="Series 4"> |
78 |
<point name="Jan" y="223" /> |
79 |
<point name="Feb" y="249" /> |
80 |
<point name="Mar" y="276" /> |
81 |
<point name="Apr" y="249" /> |
82 |
<point name="May" y="297" /> |
83 |
<extra_labels> |
84 |
<label enabled="true"> |
85 |
<format><![CDATA[Total: {%CategoryYSum}{numDecimals:0}]]></format> |
86 |
<position anchor="XAxis" /> |
87 |
<background enabled="true"> |
88 |
<corners type="Rounded" all="3" /> |
89 |
</background> |
90 |
</label> |
91 |
</extra_labels> |
92 |
</series> |
93 |
</data> |
94 |
</chart> |
95 |
</charts> |
96 |
</anychart> |