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="Bar" data_provider="dp1" color="#DC3912">
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 bar width]]></format>
59           </date_time>
60         </legend>
61         <series_list>
62           <series type="Bar" data_provider="dp1" color="#DC3912">
63             <name><![CDATA[^IXIC]]></name>
64             <bar_series width="0.5" />
65           </series>
66         </series_list>
67         <value_axes>
68           <primary position="Right">
69             <labels position="Outside" padding="3" valign="Center" show_first="true" show_last="true">
70               <font family="Verdana" color="#444444" bold="true" size="9" />
71               <format><![CDATA[{%Value}{numDecimals:2,trailingZeros:false}]]></format>
72             </labels>
73             <scale minimum_offset="0" />
74             <tickmarks enabled="true" show_first="true" show_last="true" thickness="1" size="3" pixel_hinting="true" color="#333333" />
75           </primary>
76         </value_axes>
77       </chart>
78       <chart>
79         <legend>
80           <date_time>
81             <font family="Verdana" color="#444444" bold="true" size="9" />
82             <format><![CDATA[Custom fill, border and bar width]]></format>
83           </date_time>
84         </legend>
85         <series_list>
86           <series type="Bar" data_provider="dp1" color="#DC3912">
87             <name><![CDATA[^IXIC]]></name>
88             <bar_series width="0.4">
89               <fill color="%Color" opacity="0.2" />
90               <border color="DarkColor(%Color)" thickness="2" opacity="1" />
91             </bar_series>
92           </series>
93         </series_list>
94         <value_axes>
95           <primary position="Right">
96             <labels position="Outside" padding="3" valign="Center" show_first="true" show_last="true">
97               <font family="Verdana" color="#444444" bold="true" size="9" />
98               <format><![CDATA[{%Value}{numDecimals:2,trailingZeros:false}]]></format>
99             </labels>
100             <scale minimum_offset="0" />
101             <tickmarks enabled="true" show_first="true" show_last="true" thickness="1" size="3" pixel_hinting="true" color="#333333" />
102           </primary>
103         </value_axes>
104       </chart>
105     </charts>
106     <time_scale>
107       <selected_range type="Custom" start_date="2009-05-25" end_date="2009-07-02" />
108     </time_scale>
109   </settings>
110 </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: "Bar",
65            dataProvider: "dp1",
66            color: "#DC3912",
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 bar width"
112          }
113        },
114        seriesList: [
115          {
116            type: "Bar",
117            dataProvider: "dp1",
118            color: "#DC3912",
119            name: "^IXIC",
120            barSeries: {
121              width: 0.5
122            }
123          }
124        ],
125        valueAxes: {
126          primary: {
127            position: "Right",
128            labels: {
129              position: "Outside",
130              padding: 3,
131              valign: "Center",
132              showFirst: true,
133              showLast: true,
134              font: {
135                family: "Verdana",
136                color: "#444444",
137                bold: true,
138                size: 9
139              },
140              format: "{%Value}{numDecimals:2,trailingZeros:false}"
141            },
142            scale: {
143              minimumOffset: 0
144            },
145            tickmarks: {
146              enabled: true,
147              showFirst: true,
148              showLast: true,
149              thickness: 1,
150              size: 3,
151              pixelHinting: true,
152              color: "#333333"
153            }
154          }
155        }
156      },
157      {
158        legend: {
159          dateTime: {
160            font: {
161              family: "Verdana",
162              color: "#444444",
163              bold: true,
164              size: 9
165            },
166            format: "Custom fill, border and bar width"
167          }
168        },
169        seriesList: [
170          {
171            type: "Bar",
172            dataProvider: "dp1",
173            color: "#DC3912",
174            name: "^IXIC",
175            barSeries: {
176              width: 0.4,
177              fill: {
178                color: "%Color",
179                opacity: 0.2
180              },
181              border: {
182                color: "DarkColor(%Color)",
183                thickness: 2,
184                opacity: 1
185              }
186            }
187          }
188        ],
189        valueAxes: {
190          primary: {
191            position: "Right",
192            labels: {
193              position: "Outside",
194              padding: 3,
195              valign: "Center",
196              showFirst: true,
197              showLast: true,
198              font: {
199                family: "Verdana",
200                color: "#444444",
201                bold: true,
202                size: 9
203              },
204              format: "{%Value}{numDecimals:2,trailingZeros:false}"
205            },
206            scale: {
207              minimumOffset: 0
208            },
209            tickmarks: {
210              enabled: true,
211              showFirst: true,
212              showLast: true,
213              thickness: 1,
214              size: 3,
215              pixelHinting: true,
216              color: "#333333"
217            }
218          }
219        }
220      }
221    ],
222    timeScale: {
223      selectedRange: {
224        type: "Custom",
225        startDate: "2009-05-25",
226        endDate: "2009-07-02"
227      }
228    }
229  }
230}

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.