01 <?xml version="1.0" encoding="UTF-8"?>
02 <anychart>
03   <settings>
04     <animation enabled="True" />
05     <locale>
06       <date_time_format>
07         <months>
08           <names><![CDATA[January,February,March,April,May,June,July,August,September,October,November,December]]></names>
09           <short_names><![CDATA[Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec]]></short_names>
10         </months>
11         <time am_string="AM" short_am_string="A" pm_string="PM" short_pm_string="P" />
12         <week_days start_from="Sunday">
13           <names><![CDATA[Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday]]></names>
14           <short_names><![CDATA[Sun,Mon,Tue,Wed,Thu,Fri,Sat]]></short_names>
15         </week_days>
16         <format><![CDATA[%yyyy/%MM/%dd %HH:%mm]]></format>
17       </date_time_format>
18     </locale>
19   </settings>
20   <charts>
21     <chart plot_type="Scatter">
22       <chart_settings>
23         <title>
24           <text><![CDATA[Scatter Plot: Line chart with DateTime Scale and Input]]></text>
25         </title>
26         <axes>
27           <x_axis>
28             <scale type="DateTime" />
29             <labels>
30               <format><![CDATA[
31 {%Value}{dateTimeFormat:%yyyy %MMMM}
32 {%Value}{dateTimeFormat:%dd-%ddd} {%Value}{dateTimeFormat:%hh}:{%Value}{dateTimeFormat:%mm %tt}
33 ]]></format>
34             </labels>
35             <title>
36               <text><![CDATA[Date/Time]]></text>
37             </title>
38           </x_axis>
39           <y_axis>
40             <title>
41               <text><![CDATA[Value]]></text>
42             </title>
43           </y_axis>
44         </axes>
45       </chart_settings>
46       <data_plot_settings>
47         <line_series>
48           <tooltip_settings enabled="True">
49             <format><![CDATA[
50 Value: {%YValue}
51 Date: {%XValue}{dateTimeFormat:%yyyy %MMMM} {%XValue}{dateTimeFormat:%dd-%ddd}
52 Time: {%XValue}{dateTimeFormat:%hh}:{%XValue}{dateTimeFormat:%mm %tt}
53 ]]></format>
54           </tooltip_settings>
55         </line_series>
56       </data_plot_settings>
57       <data>
58         <series type="Line">
59           <point x="2005/10/12 12:10" y="10" />
60           <point x="2005/11/13 16:00" y="12" />
61           <point x="2005/12/14 15:30" y="16" />
62           <point x="2006/01/15 18:10" y="13" />
63           <point x="2006/02/16 16:45" y="11" />
64           <point x="2006/03/17 17:50" y="9" />
65           <point x="2006/04/18 13:45" y="5" />
66           <point x="2006/05/19 18:32" y="7" />
67           <point x="2006/06/20 16:45" y="10" />
68           <point x="2006/07/21 11:30" y="18" />
69           <point x="2006/08/22 13:45" y="21" />
70           <point x="2006/09/23 14:10" y="23" />
71           <point x="2006/10/24 19:20" y="32" />
72           <point x="2006/11/25 12:45" y="30" />
73           <point x="2006/12/26 01:50" y="27" />
74           <point x="2007/01/27 06:25" y="23" />
75           <point x="2007/02/28 14:35" y="21" />
76           <point x="2007/03/29 08:20" y="34" />
77           <point x="2007/04/30 23:30" y="48" />
78         </series>
79       </data>
80     </chart>
81   </charts>
82 </anychart>