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.5"> |
10 |
<tooltip_settings enabled="True"> |
11 |
<format><![CDATA[{%Name} - ${%YValue}]]></format> |
12 |
</tooltip_settings> |
13 |
<label_settings enabled="True"> |
14 |
<format><![CDATA[${%YValue}{numDecimals:0}]]></format> |
15 |
</label_settings> |
16 |
</bar_series> |
17 |
</data_plot_settings> |
18 |
<chart_settings> |
19 |
<title enabled="true"> |
20 |
<text><![CDATA[Products Sales]]></text> |
21 |
</title> |
22 |
<axes> |
23 |
<y_axis> |
24 |
<title> |
25 |
<text><![CDATA[Sales (in USD)]]></text> |
26 |
</title> |
27 |
<labels align="Inside"> |
28 |
<format><![CDATA[${%Value}{numDecimals:0}]]></format> |
29 |
</labels> |
30 |
<axis_markers> |
31 |
<lines> |
32 |
<line value="2350" thickness="2" color="Rgb(200,30,30)" caps="Square"> |
33 |
<label enabled="True" multi_line_align="Center"> |
34 |
<font color="Rgb(200,30,30)" /> |
35 |
<format><![CDATA[ |
36 |
Forecast: |
37 |
${%Value}{numDecimals:0} |
38 |
]]></format> |
39 |
</label> |
40 |
</line> |
41 |
<line value="6500" thickness="2" color="Green" caps="Square"> |
42 |
<label enabled="True" multi_line_align="Center"> |
43 |
<font color="Green" /> |
44 |
<format><![CDATA[ |
45 |
Desired: |
46 |
${%Value}{numDecimals:0} |
47 |
]]></format> |
48 |
</label> |
49 |
</line> |
50 |
</lines> |
51 |
</axis_markers> |
52 |
</y_axis> |
53 |
<x_axis> |
54 |
<title enabled="false"> |
55 |
<text><![CDATA[Products]]></text> |
56 |
</title> |
57 |
<axis_markers> |
58 |
<ranges> |
59 |
<range minimum="1.5" maximum="3.5"> |
60 |
<fill color="Rgb(240,170,170)" opacity="0.3" /> |
61 |
<minimum_line color="Gray" opacity="0.5" /> |
62 |
<maximum_line color="Gray" opacity="0.5" /> |
63 |
<label enabled="True" position="Far"> |
64 |
<font bold="True" /> |
65 |
<format><![CDATA[Unpredictable Revenue]]></format> |
66 |
<background enabled="True"> |
67 |
<effects enabled="False" /> |
68 |
</background> |
69 |
</label> |
70 |
</range> |
71 |
</ranges> |
72 |
</axis_markers> |
73 |
</x_axis> |
74 |
</axes> |
75 |
</chart_settings> |
76 |
<data> |
77 |
<series name="Series 1" palette="Default"> |
78 |
<point name="Product A" y="1222" /> |
79 |
<point name="Product B" y="2431" /> |
80 |
<point name="Product C" y="3624" /> |
81 |
<point name="Product D" y="5243" /> |
82 |
<point name="Product E" y="8813" /> |
83 |
</series> |
84 |
</data> |
85 |
</chart> |
86 |
</charts> |
87 |
</anychart> |