01 <?xml version="1.0" encoding="UTF-8"?>
02 <anychart>
03   <dashboard>
04     <view type="Dashboard">
05       <title>
06         <text><![CDATA[Slices Sorting Sample]]></text>
07       </title>
08       <hbox width="100%" height="100%">
09         <view type="Chart" source="None" width="33.3%" height="100%" />
10         <view type="Chart" source="Asc" width="33.3%" height="100%" />
11         <view type="Chart" source="Desc" width="33.3%" height="100%" />
12       </hbox>
13     </view>
14   </dashboard>
15   <templates>
16     <template name="PieTemplate">
17       <chart plot_type="Pie">
18         <chart_settings>
19           <title enabled="true" />
20         </chart_settings>
21         <data_plot_settings>
22           <pie_series sort="Desc">
23             <label_settings enabled="True">
24               <font color="White" size="9">
25                 <effects>
26                   <drop_shadow enabled="True" />
27                 </effects>
28               </font>
29               <position anchor="Center" valign="Center" halign="Center" padding="0" />
30               <format><![CDATA[{%YPercentOfSeries}{numDecimals:1}%]]></format>
31             </label_settings>
32           </pie_series>
33         </data_plot_settings>
34       </chart>
35     </template>
36   </templates>
37   <charts>
38     <chart template="PieTemplate" name="None">
39       <chart_settings>
40         <title>
41           <text><![CDATA[No Sorting]]></text>
42         </title>
43       </chart_settings>
44       <data_plot_settings>
45         <pie_series sort="None" />
46       </data_plot_settings>
47       <data>
48         <series name="Year 2003" palette="Default">
49           <point name="Department Stores" y="637166" />
50           <point name="Discount Stores" y="721630" />
51           <point name="Men's/Women's Specialty Stores" y="148662" />
52           <point name="Juvenile Specialty Stores" y="78662" />
53           <point name="All other outlets" y="90000" />
54         </series>
55       </data>
56     </chart>
57     <chart template="PieTemplate" name="Asc">
58       <chart_settings>
59         <title>
60           <text><![CDATA[Ascending]]></text>
61         </title>
62       </chart_settings>
63       <data_plot_settings>
64         <pie_series sort="Asc" />
65       </data_plot_settings>
66       <data>
67         <series name="Year 2003" palette="Default">
68           <point name="Department Stores" y="637166" />
69           <point name="Discount Stores" y="721630" />
70           <point name="Men's/Women's Specialty Stores" y="148662" />
71           <point name="Juvenile Specialty Stores" y="78662" />
72           <point name="All other outlets" y="90000" />
73         </series>
74       </data>
75     </chart>
76     <chart template="PieTemplate" name="Desc">
77       <chart_settings>
78         <title>
79           <text><![CDATA[Descending]]></text>
80         </title>
81       </chart_settings>
82       <data_plot_settings>
83         <pie_series sort="Desc" />
84       </data_plot_settings>
85       <data>
86         <series name="Year 2003" palette="Default">
87           <point name="Department Stores" y="637166" />
88           <point name="Discount Stores" y="721630" />
89           <point name="Men's/Women's Specialty Stores" y="148662" />
90           <point name="Juvenile Specialty Stores" y="78662" />
91           <point name="All other outlets" y="90000" />
92         </series>
93       </data>
94     </chart>
95   </charts>
96 </anychart>