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" enable_3d_mode="True">
09         <bar_series group_padding="0.5">
10           <tooltip_settings enabled="True">
11             <format><![CDATA[{%Name} - ${%YValue}]]></format>
12           </tooltip_settings>
13         </bar_series>
14       </data_plot_settings>
15       <chart_settings>
16         <title enabled="true">
17           <text><![CDATA[Single-Series: with Simple Legend]]></text>
18         </title>
19         <legend enabled="true" position="Bottom" align="Spread" ignore_auto_item="true">
20           <format><![CDATA[{%Icon} {%Name} (${%YValue})]]></format>
21           <template />
22           <title enabled="true">
23             <text><![CDATA[Products Sales]]></text>
24           </title>
25           <columns_separator enabled="false" />
26           <background>
27             <inside_margin left="10" right="10" />
28           </background>
29           <items>
30             <item source="Points" />
31           </items>
32         </legend>
33         <axes>
34           <y_axis>
35             <title>
36               <text><![CDATA[Sales (in USD)]]></text>
37             </title>
38             <labels align="Inside">
39               <format><![CDATA[${%Value}{numDecimals:0}]]></format>
40             </labels>
41           </y_axis>
42           <x_axis>
43             <title enabled="false">
44               <text><![CDATA[Products]]></text>
45             </title>
46           </x_axis>
47         </axes>
48       </chart_settings>
49       <data>
50         <series name="Series 1" palette="Default">
51           <point name="Product A" y="1222" />
52           <point name="Product B" y="2431" />
53           <point name="Product C" y="3624" />
54           <point name="Product D" y="5243" />
55           <point name="Product E" y="8813" />
56         </series>
57       </data>
58     </chart>
59   </charts>
60 </anychart>