01 <?xml version="1.0" encoding="UTF-8"?>
02 <stock xmlns="http://anychart.com/products/stock/schemas/1.9.0/schema.xsd">
03   <data>
04     <data_sets>
05       <data_set id="dataSet1" source_url="./../../csv-data/milliseconds_data.csv">
06         <csv_settings ignore_first_row="true" rows_separator="\n" columns_separator=";" />
07         <locale>
08           <date_time>
09             <format><![CDATA[%yyyy-%MM-%dd %hh:%mm%:%ss:%fff]]></format>
10           </date_time>
11         </locale>
12       </data_set>
13     </data_sets>
14     <data_providers>
15       <general_data_providers>
16         <data_provider data_set="dataSet1" id="dp1">
17           <fields>
18             <field type="Value" column="1" approximation_type="Average" />
19           </fields>
20         </data_provider>
21         <data_provider data_set="dataSet1" id="dp2">
22           <fields>
23             <field type="Value" column="2" approximation_type="Average" />
24           </fields>
25         </data_provider>
26         <data_provider data_set="dataSet1" id="dp3">
27           <fields>
28             <field type="Value" column="3" approximation_type="Average" />
29           </fields>
30         </data_provider>
31       </general_data_providers>
32       <scroller_data_providers>
33         <data_provider data_set="dataSet1" column="1" />
34       </scroller_data_providers>
35     </data_providers>
36   </data>
37   <settings>
38     <data_grouping enabled="false" />
39     <range_selector enabled="true" />
40     <inside_margin right="55" />
41     <charts>
42       <chart>
43         <legend enabled="true">
44           <date_time enabled="false" />
45           <title enabled="true" />
46           <background>
47             <fill type="Solid" color="White" />
48           </background>
49         </legend>
50         <series_list>
51           <series type="Line" data_provider="dp1" color="#0080C0">
52             <name><![CDATA[Series A]]></name>
53           </series>
54           <series type="Line" data_provider="dp2" color="#008040">
55             <name><![CDATA[Series B]]></name>
56           </series>
57           <series type="Line" data_provider="dp3" color="#800080">
58             <name><![CDATA[Series C]]></name>
59           </series>
60         </series_list>
61         <series_settings_defaults>
62           <line_series thickness="1" />
63         </series_settings_defaults>
64         <value_axes>
65           <primary position="Right">
66             <labels position="Outside" padding="3" valign="Center" show_first="true" show_last="true">
67               <format><![CDATA[{%Value}{numDecimals:0}]]></format>
68               <font family="Tahoma" size="9" bold="true" color="#333333" />
69             </labels>
70             <scale mode="Values" type="Linear" minimum_offset="0" />
71           </primary>
72         </value_axes>
73         <x_axis>
74           <labels>
75             <background>
76               <fill type="Solid" color="#FDFDFD" />
77             </background>
78           </labels>
79         </x_axis>
80       </chart>
81     </charts>
82     <time_scale>
83       <selected_range type="Unit" unit="Second" count="2" />
84     </time_scale>
85   </settings>
86 </stock>
01{
02  data: {
03    dataSets: [
04      {
05        id: "dataSet1",
06        sourceUrl: "./../../csv-data/milliseconds_data.csv",
07        csvSettings: {
08          ignoreFirstRow: true,
09          rowsSeparator: "\n",
10          columnsSeparator: ";"
11        },
12        locale: {
13          dateTime: {
14            format: "%yyyy-%MM-%dd %hh:%mm%:%ss:%fff"
15          }
16        }
17      }
18    ],
19    dataProviders: {
20      generalDataProviders: [
21        {
22          dataSet: "dataSet1",
23          id: "dp1",
24          fields: [
25            {
26              type: "Value",
27              column: 1,
28              approximationType: "Average"
29            }
30          ]
31        },
32        {
33          dataSet: "dataSet1",
34          id: "dp2",
35          fields: [
36            {
37              type: "Value",
38              column: 2,
39              approximationType: "Average"
40            }
41          ]
42        },
43        {
44          dataSet: "dataSet1",
45          id: "dp3",
46          fields: [
47            {
48              type: "Value",
49              column: 3,
50              approximationType: "Average"
51            }
52          ]
53        }
54      ],
55      scrollerDataProviders: [
56        {
57          dataSet: "dataSet1",
58          column: 1
59        }
60      ]
61    }
62  },
63  settings: {
64    dataGrouping: {
65      enabled: false
66    },
67    rangeSelector: {
68      enabled: true
69    },
70    insideMargin: {
71      right: 55
72    },
73    charts: [
74      {
75        legend: {
76          enabled: true,
77          dateTime: {
78            enabled: false
79          },
80          title: {
81            enabled: true
82          },
83          background: {
84            fill: {
85              type: "Solid",
86              color: "White"
87            }
88          }
89        },
90        seriesList: [
91          {
92            type: "Line",
93            dataProvider: "dp1",
94            color: "#0080C0",
95            name: "Series A"
96          },
97          {
98            type: "Line",
99            dataProvider: "dp2",
100            color: "#008040",
101            name: "Series B"
102          },
103          {
104            type: "Line",
105            dataProvider: "dp3",
106            color: "#800080",
107            name: "Series C"
108          }
109        ],
110        seriesSettingsDefaults: {
111          lineSeries: {
112            thickness: 1
113          }
114        },
115        valueAxes: {
116          primary: {
117            position: "Right",
118            labels: {
119              position: "Outside",
120              padding: 3,
121              valign: "Center",
122              showFirst: true,
123              showLast: true,
124              format: "{%Value}{numDecimals:0}",
125              font: {
126                family: "Tahoma",
127                size: 9,
128                bold: true,
129                color: "#333333"
130              }
131            },
132            scale: {
133              mode: "Values",
134              type: "Linear",
135              minimumOffset: 0
136            }
137          }
138        },
139        xAxis: {
140          labels: {
141            background: {
142              fill: {
143                type: "Solid",
144                color: "#FDFDFD"
145              }
146            }
147          }
148        }
149      }
150    ],
151    timeScale: {
152      selectedRange: {
153        type: "Unit",
154        unit: "Second",
155        count: 2
156      }
157    }
158  }
159}

The information contained in this website is for general information purposes only. All sample data provided on this site is for demonstration purposes only.


The logos and names of other companies and products mentioned on this site are copyright and/or trademarks of their respective owners.


The content on this site, including news, quotes, data and other information, is provided for your personal information only, and is intended for demonstration purposes only. Content on this site is not appropriate for the purposes of making a decision to carry out a transaction or trade. Nor does it provide any form of advice (investment, tax, legal) amounting to investment advice, or make any recommendations regarding particular financial instruments, investments or products.


In no event AnyChart will be liable for any loss or damage including without limitation, indirect or consequential loss or damage, or any loss or damage whatsoever arising from loss of data or profits arising out of, or in connection with, the use of this website.


This site may point to other Internet sites that may be of interest to you, however AnyChart does not endorse or take responsibility for the content on such other sites.


Market data and News provided by and copyright RediNews, Incorporated.