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/ixic_daily_short.csv">
06         <csv_settings ignore_first_row="true" rows_separator="\n" columns_separator="," />
07         <locale>
08           <date_time>
09             <format><![CDATA[%yyyy%MM%dd]]></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="Close" column="4" approximation_type="Close" />
19           </fields>
20         </data_provider>
21       </general_data_providers>
22       <scroller_data_providers>
23         <data_provider data_set="dataSet1" column="4" />
24       </scroller_data_providers>
25     </data_providers>
26   </data>
27   <settings>
28     <data_grouping enabled="true" max_visible_points="250" />
29     <inside_margin right="40" />
30     <charts>
31       <chart>
32         <legend>
33           <date_time>
34             <font family="Verdana" color="#444444" bold="true" size="9" />
35             <format><![CDATA[Default settings]]></format>
36           </date_time>
37         </legend>
38         <series_list>
39           <series type="SplineArea" data_provider="dp1" color="#005ECB">
40             <name><![CDATA[^IXIC]]></name>
41           </series>
42         </series_list>
43         <value_axes>
44           <primary position="Right">
45             <labels position="Outside" padding="3" valign="Center" show_first="true" show_last="true">
46               <font family="Verdana" color="#444444" bold="true" size="9" />
47               <format><![CDATA[{%Value}{numDecimals:2,trailingZeros:false}]]></format>
48             </labels>
49             <scale minimum_offset="0" />
50             <tickmarks enabled="true" show_first="true" show_last="true" thickness="1" size="3" pixel_hinting="true" color="#333333" />
51           </primary>
52         </value_axes>
53       </chart>
54       <chart>
55         <legend>
56           <date_time>
57             <font family="Verdana" color="#444444" bold="true" size="9" />
58             <format><![CDATA[Custom fill and series marker]]></format>
59           </date_time>
60         </legend>
61         <series_list>
62           <series type="SplineArea" data_provider="dp1" color="#005ECB">
63             <name><![CDATA[^IXIC]]></name>
64             <area_series>
65               <line thickness="1" color="DarkColor(%Color)" />
66               <fill opacity="0.3" />
67             </area_series>
68             <marker enabled="true">
69               <states>
70                 <normal enabled="true" size="4">
71                   <fill type="Gradient">
72                     <gradient type="Radial" focal_point="-0.5" angle="45">
73                       <keys>
74                         <key color="blend(#005ECB,White,0.5)" />
75                         <key color="#005ECB" />
76                       </keys>
77                     </gradient>
78                   </fill>
79                   <border enabled="true" color="DarkColor(%Color)" opacity="0.5" />
80                 </normal>
81                 <hover enabled="true" size="8">
82                   <fill type="Gradient">
83                     <gradient type="Radial" focal_point="-0.5" angle="45">
84                       <keys>
85                         <key color="blend(#005ECB,White,0.5)" />
86                         <key color="#005ECB" />
87                       </keys>
88                     </gradient>
89                   </fill>
90                   <border enabled="true" color="DarkColor(%Color)" opacity="1" />
91                 </hover>
92               </states>
93             </marker>
94           </series>
95         </series_list>
96         <value_axes>
97           <primary position="Right">
98             <labels position="Outside" padding="3" valign="Center" show_first="true" show_last="true">
99               <font family="Verdana" color="#444444" bold="true" size="9" />
100               <format><![CDATA[{%Value}{numDecimals:2,trailingZeros:false}]]></format>
101             </labels>
102             <scale minimum_offset="0" />
103             <tickmarks enabled="true" show_first="true" show_last="true" thickness="1" size="3" pixel_hinting="true" color="#333333" />
104           </primary>
105         </value_axes>
106       </chart>
107       <chart>
108         <legend>
109           <date_time>
110             <font family="Verdana" color="#444444" bold="true" size="9" />
111             <format><![CDATA[Custom fill and line thickness]]></format>
112           </date_time>
113         </legend>
114         <series_list>
115           <series type="SplineArea" data_provider="dp1" color="#005ECB">
116             <name><![CDATA[^IXIC]]></name>
117             <area_series>
118               <line thickness="2" color="DarkColor(%Color)" />
119               <fill opacity="0.1" />
120             </area_series>
121           </series>
122         </series_list>
123         <value_axes>
124           <primary position="Right">
125             <labels position="Outside" padding="3" valign="Center" show_first="true" show_last="true">
126               <font family="Verdana" color="#444444" bold="true" size="9" />
127               <format><![CDATA[{%Value}{numDecimals:2,trailingZeros:false}]]></format>
128             </labels>
129             <scale minimum_offset="0" />
130             <tickmarks enabled="true" show_first="true" show_last="true" thickness="1" size="3" pixel_hinting="true" color="#333333" />
131           </primary>
132         </value_axes>
133       </chart>
134     </charts>
135     <time_scale>
136       <selected_range type="Unit" unit="Month" count="2" />
137     </time_scale>
138   </settings>
139 </stock>
01{
02  data: {
03    dataSets: [
04      {
05        id: "dataSet1",
06        sourceUrl: "./../../csv-data/ixic_daily_short.csv",
07        csvSettings: {
08          ignoreFirstRow: true,
09          rowsSeparator: "\n",
10          columnsSeparator: ","
11        },
12        locale: {
13          dateTime: {
14            format: "%yyyy%MM%dd"
15          }
16        }
17      }
18    ],
19    dataProviders: {
20      generalDataProviders: [
21        {
22          dataSet: "dataSet1",
23          id: "dp1",
24          fields: [
25            {
26              type: "Close",
27              column: 4,
28              approximationType: "Close"
29            }
30          ]
31        }
32      ],
33      scrollerDataProviders: [
34        {
35          dataSet: "dataSet1",
36          column: 4
37        }
38      ]
39    }
40  },
41  settings: {
42    dataGrouping: {
43      enabled: true,
44      maxVisiblePoints: 250
45    },
46    insideMargin: {
47      right: 40
48    },
49    charts: [
50      {
51        legend: {
52          dateTime: {
53            font: {
54              family: "Verdana",
55              color: "#444444",
56              bold: true,
57              size: 9
58            },
59            format: "Default settings"
60          }
61        },
62        seriesList: [
63          {
64            type: "SplineArea",
65            dataProvider: "dp1",
66            color: "#005ECB",
67            name: "^IXIC"
68          }
69        ],
70        valueAxes: {
71          primary: {
72            position: "Right",
73            labels: {
74              position: "Outside",
75              padding: 3,
76              valign: "Center",
77              showFirst: true,
78              showLast: true,
79              font: {
80                family: "Verdana",
81                color: "#444444",
82                bold: true,
83                size: 9
84              },
85              format: "{%Value}{numDecimals:2,trailingZeros:false}"
86            },
87            scale: {
88              minimumOffset: 0
89            },
90            tickmarks: {
91              enabled: true,
92              showFirst: true,
93              showLast: true,
94              thickness: 1,
95              size: 3,
96              pixelHinting: true,
97              color: "#333333"
98            }
99          }
100        }
101      },
102      {
103        legend: {
104          dateTime: {
105            font: {
106              family: "Verdana",
107              color: "#444444",
108              bold: true,
109              size: 9
110            },
111            format: "Custom fill and series marker"
112          }
113        },
114        seriesList: [
115          {
116            type: "SplineArea",
117            dataProvider: "dp1",
118            color: "#005ECB",
119            name: "^IXIC",
120            areaSeries: {
121              line: {
122                thickness: 1,
123                color: "DarkColor(%Color)"
124              },
125              fill: {
126                opacity: 0.3
127              }
128            },
129            marker: {
130              enabled: true,
131              states: {
132                normal: {
133                  enabled: true,
134                  size: 4,
135                  fill: {
136                    type: "Gradient",
137                    gradient: {
138                      type: "Radial",
139                      focalPoint: -0.5,
140                      angle: 45,
141                      keys: [
142                        {
143                          color: "blend(#005ECB,White,0.5)"
144                        },
145                        {
146                          color: "#005ECB"
147                        }
148                      ]
149                    }
150                  },
151                  border: {
152                    enabled: true,
153                    color: "DarkColor(%Color)",
154                    opacity: 0.5
155                  }
156                },
157                hover: {
158                  enabled: true,
159                  size: 8,
160                  fill: {
161                    type: "Gradient",
162                    gradient: {
163                      type: "Radial",
164                      focalPoint: -0.5,
165                      angle: 45,
166                      keys: [
167                        {
168                          color: "blend(#005ECB,White,0.5)"
169                        },
170                        {
171                          color: "#005ECB"
172                        }
173                      ]
174                    }
175                  },
176                  border: {
177                    enabled: true,
178                    color: "DarkColor(%Color)",
179                    opacity: 1
180                  }
181                }
182              }
183            }
184          }
185        ],
186        valueAxes: {
187          primary: {
188            position: "Right",
189            labels: {
190              position: "Outside",
191              padding: 3,
192              valign: "Center",
193              showFirst: true,
194              showLast: true,
195              font: {
196                family: "Verdana",
197                color: "#444444",
198                bold: true,
199                size: 9
200              },
201              format: "{%Value}{numDecimals:2,trailingZeros:false}"
202            },
203            scale: {
204              minimumOffset: 0
205            },
206            tickmarks: {
207              enabled: true,
208              showFirst: true,
209              showLast: true,
210              thickness: 1,
211              size: 3,
212              pixelHinting: true,
213              color: "#333333"
214            }
215          }
216        }
217      },
218      {
219        legend: {
220          dateTime: {
221            font: {
222              family: "Verdana",
223              color: "#444444",
224              bold: true,
225              size: 9
226            },
227            format: "Custom fill and line thickness"
228          }
229        },
230        seriesList: [
231          {
232            type: "SplineArea",
233            dataProvider: "dp1",
234            color: "#005ECB",
235            name: "^IXIC",
236            areaSeries: {
237              line: {
238                thickness: 2,
239                color: "DarkColor(%Color)"
240              },
241              fill: {
242                opacity: 0.1
243              }
244            }
245          }
246        ],
247        valueAxes: {
248          primary: {
249            position: "Right",
250            labels: {
251              position: "Outside",
252              padding: 3,
253              valign: "Center",
254              showFirst: true,
255              showLast: true,
256              font: {
257                family: "Verdana",
258                color: "#444444",
259                bold: true,
260                size: 9
261              },
262              format: "{%Value}{numDecimals:2,trailingZeros:false}"
263            },
264            scale: {
265              minimumOffset: 0
266            },
267            tickmarks: {
268              enabled: true,
269              showFirst: true,
270              showLast: true,
271              thickness: 1,
272              size: 3,
273              pixelHinting: true,
274              color: "#333333"
275            }
276          }
277        }
278      }
279    ],
280    timeScale: {
281      selectedRange: {
282        type: "Unit",
283        unit: "Month",
284        count: 2
285      }
286    }
287  }
288}

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.