01 <?xml version="1.0" encoding="UTF-8"?>
02 <anychart>
03   <dashboard>
04     <view type="Dashboard">
05       <title padding="0">
06         <text><![CDATA[Multiple Charts in Dashboard Mode]]></text>
07       </title>
08       <background>
09         <inside_margin all="3" top="10" />
10       </background>
11       <vbox width="100%" height="100%">
12         <margin all="0" />
13         <hbox width="100%" height="50%">
14           <margin all="0" />
15           <view type="Chart" source="Chart1" width="33.3%" height="100%" />
16           <view type="Chart" source="Chart2" width="33.3%" height="100%" />
17           <view type="Chart" source="Chart3" width="33.3%" height="100%" />
18         </hbox>
19         <hbox width="100%" height="50%">
20           <margin all="0" />
21           <view type="Chart" source="Chart4" width="33.3%" height="100%" />
22           <view type="Chart" source="Chart5" width="33.3%" height="100%" />
23           <view type="Chart" source="Chart6" width="33.3%" height="100%" />
24         </hbox>
25       </vbox>
26     </view>
27   </dashboard>
28   <templates>
29     <template name="baseTemplate">
30       <chart>
31         <chart_settings>
32           <title align="Left" align_by="DataPlot" padding="0">
33             <font bold="True" color="#595959" />
34           </title>
35           <chart_background>
36             <border type="Solid" color="#CCCCCC" thickness="1" />
37             <corners type="Square" />
38             <effects enabled="false" />
39             <inside_margin all="10" top="5" />
40           </chart_background>
41           <data_plot_background>
42             <effects enabled="false" />
43           </data_plot_background>
44           <axes>
45             <x_axis>
46               <title enabled="False" />
47               <minor_grid enabled="False" />
48               <minor_tickmark enabled="False" />
49             </x_axis>
50             <y_axis>
51               <title enabled="False" />
52               <minor_grid enabled="False" />
53             </y_axis>
54           </axes>
55         </chart_settings>
56       </chart>
57     </template>
58   </templates>
59   <charts>
60     <chart name="Chart1" template="baseTemplate">
61       <chart_settings>
62         <title>
63           <text><![CDATA[Column]]></text>
64         </title>
65       </chart_settings>
66       <data_plot_settings>
67         <bar_series>
68           <tooltip_settings enabled="True" />
69         </bar_series>
70       </data_plot_settings>
71       <data>
72         <series>
73           <point y="10" />
74           <point y="20" />
75           <point y="30" />
76           <point y="25" />
77           <point y="11" />
78           <point y="5" />
79         </series>
80       </data>
81     </chart>
82     <chart name="Chart2" template="baseTemplate">
83       <chart_settings>
84         <title>
85           <text><![CDATA[Spline-Area]]></text>
86         </title>
87         <axes>
88           <x_axis tickmarks_placement="Center" />
89         </axes>
90       </chart_settings>
91       <data_plot_settings>
92         <area_series>
93           <marker_settings enabled="True" />
94           <tooltip_settings enabled="True" />
95           <area_style>
96             <line enabled="True" color="DarkColor(%Color)" />
97           </area_style>
98         </area_series>
99       </data_plot_settings>
100       <data>
101         <series type="SplineArea">
102           <point y="10" />
103           <point y="13" />
104           <point y="30" />
105           <point y="15" />
106           <point y="18" />
107           <point y="5" />
108         </series>
109       </data>
110     </chart>
111     <chart name="Chart3" template="baseTemplate" plot_type="CategorizedHorizontal">
112       <chart_settings>
113         <title>
114           <text><![CDATA[Bar]]></text>
115         </title>
116         <axes>
117           <y_axis position="Right" />
118         </axes>
119       </chart_settings>
120       <data_plot_settings>
121         <bar_series>
122           <tooltip_settings enabled="True" />
123         </bar_series>
124       </data_plot_settings>
125       <data>
126         <series type="Bar">
127           <point y="10" />
128           <point y="20" />
129           <point y="30" />
130           <point y="25" />
131           <point y="11" />
132           <point y="5" />
133         </series>
134       </data>
135     </chart>
136     <chart name="Chart4" template="baseTemplate">
137       <chart_settings>
138         <title>
139           <text><![CDATA[Spline]]></text>
140         </title>
141         <axes>
142           <x_axis tickmarks_placement="Center" />
143         </axes>
144       </chart_settings>
145       <data_plot_settings>
146         <line_series>
147           <tooltip_settings enabled="True" />
148         </line_series>
149       </data_plot_settings>
150       <data>
151         <series type="Spline">
152           <point y="10" />
153           <point y="13" />
154           <point y="30" />
155           <point y="15" />
156           <point y="18" />
157           <point y="5" />
158         </series>
159       </data>
160     </chart>
161     <chart name="Chart5" template="baseTemplate">
162       <chart_settings>
163         <title>
164           <text><![CDATA[Bubble]]></text>
165         </title>
166       </chart_settings>
167       <data_plot_settings>
168         <bubble_series minimum_bubble_size="5%" maximum_bubble_size="30%">
169           <tooltip_settings enabled="True">
170             <format><![CDATA[{%Value} - {%BubbleSize}]]></format>
171           </tooltip_settings>
172           <bubble_style>
173             <states>
174               <hover>
175                 <fill color="LightColor(%Color)" />
176               </hover>
177             </states>
178           </bubble_style>
179         </bubble_series>
180       </data_plot_settings>
181       <data>
182         <series type="Bubble">
183           <point y="10" size="1.2" />
184           <point y="13" size="1.3" />
185           <point y="30" size="1.5" />
186           <point y="15" size="1.6" />
187           <point y="18" size="1.4" />
188           <point y="5" size="1.05" />
189         </series>
190       </data>
191     </chart>
192     <chart name="Chart6" template="baseTemplate">
193       <chart_settings>
194         <title>
195           <text><![CDATA[Range-Area]]></text>
196         </title>
197         <axes>
198           <x_axis tickmarks_placement="Center" />
199         </axes>
200       </chart_settings>
201       <data_plot_settings>
202         <range_area_series>
203           <range_area_style>
204             <start_line thickness="1" />
205             <end_line thickness="1" />
206           </range_area_style>
207           <start_point>
208             <tooltip_settings enabled="True">
209               <position anchor="Float" valign="Top" />
210               <format><![CDATA[{%YRangeStart}{numDecimals:3} : {%YRangeEnd}{numDecimals:3}]]></format>
211             </tooltip_settings>
212           </start_point>
213         </range_area_series>
214       </data_plot_settings>
215       <data>
216         <series type="RangeSplineArea">
217           <point name="1" start="-0.489863522578899" end="0.848138677816903" />
218           <point name="2" start="-0.385774774190865" end="0.779071607989758" />
219           <point name="3" start="0.085320462046806" end="0.665356275004035" />
220           <point name="4" start="0.661951933364362" end="1.48857802967009" />
221           <point name="5" start="0.275939368771361" end="1.78112017585948" />
222           <point name="6" start="0.327782217100161" end="0.910945756785081" />
223           <point name="7" start="-0.353034448974316" end="0.51492272900181" />
224           <point name="8" start="-1.52464778559499" end="0.260972126042923" />
225           <point name="9" start="-0.593361686260142" end="0.162759391666744" />
226           <point name="10" start="-0.282102011275525" end="0.828140289442679" />
227           <point name="11" start="-1.23059300530264" end="0.451152587985225" />
228           <point name="12" start="-1.24995265027972" end="-0.31266194270582" />
229           <point name="13" start="-1.37795240635888" end="-0.589722591726911" />
230           <point name="14" start="-2.52518734732884" end="-0.95184304656081" />
231           <point name="15" start="-1.70164913297708" end="-1.54184969446708" />
232           <point name="16" start="-2.80066758524658" end="-1.31031245938982" />
233           <point name="17" start="-2.21871327339612" end="-0.895693067878342" />
234           <point name="18" start="-1.86045028588756" end="-1.26512897818588" />
235           <point name="19" start="-2.13514441304614" end="-1.08943821214579" />
236           <point name="20" start="-1.36106428148275" end="-0.751109295408758" />
237         </series>
238       </data>
239     </chart>
240   </charts>
241 </anychart>