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     <charts>
29       <chart>
30         <series_list>
31           <series type="Line" data_provider="dp1" color="#005ECB">
32             <name><![CDATA[NASDAQ Composite (^IXIC):]]></name>
33           </series>
34         </series_list>
35         <value_axes>
36           <primary>
37             <axis_markers>
38               <range_markers>
39                 <range_marker low_value="800" high_value="1800" affects_scale_range="true">
40                   <low_line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
41                   <high_line dashed="true" dash_length="3" dash_space="3" pixel_hinting="true" />
42                   <fill opacity="0.05" />
43                   <labels>
44                     <label anchor="RightBottom" x_padding="5" y_padding="4" valign="Top" halign="Left">
45                       <format><![CDATA[Low: {%LowValue}{numDecimals:0}]]></format>
46                       <font family="Tahoma" size="9" bold="true" color="#FFFFFF" />
47                       <background>
48                         <fill type="Solid" color="DarkRed" opacity="0.8" />
49                         <corners type="Rounded" all="4" />
50                         <inside_margin left="6" right="6" />
51                       </background>
52                     </label>
53                     <label anchor="RightTop" x_padding="5" y_padding="4" valign="Bottom" halign="Left">
54                       <format><![CDATA[High: {%HighValue}{numDecimals:0}]]></format>
55                       <font family="Tahoma" size="9" bold="true" color="#FFFFFF" />
56                       <background>
57                         <fill type="Solid" color="Green" opacity="0.8" />
58                         <corners type="Rounded" all="4" />
59                         <inside_margin left="6" right="6" />
60                       </background>
61                     </label>
62                   </labels>
63                 </range_marker>
64               </range_markers>
65             </axis_markers>
66           </primary>
67         </value_axes>
68       </chart>
69     </charts>
70     <time_scale>
71       <selected_range type="Unit" unit="Year" count="1" />
72     </time_scale>
73   </settings>
74 </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    charts: [
43      {
44        seriesList: [
45          {
46            type: "Line",
47            dataProvider: "dp1",
48            color: "#005ECB",
49            name: "NASDAQ Composite (^IXIC):"
50          }
51        ],
52        valueAxes: {
53          primary: {
54            axisMarkers: {
55              rangeMarkers: [
56                {
57                  lowValue: 800,
58                  highValue: 1800,
59                  affectsScaleRange: true,
60                  lowLine: {
61                    dashed: true,
62                    dashLength: 3,
63                    dashSpace: 3,
64                    pixelHinting: true
65                  },
66                  highLine: {
67                    dashed: true,
68                    dashLength: 3,
69                    dashSpace: 3,
70                    pixelHinting: true
71                  },
72                  fill: {
73                    opacity: 0.05
74                  },
75                  labels: [
76                    {
77                      anchor: "RightBottom",
78                      xPadding: 5,
79                      yPadding: 4,
80                      valign: "Top",
81                      halign: "Left",
82                      format: "Low: {%LowValue}{numDecimals:0}",
83                      font: {
84                        family: "Tahoma",
85                        size: 9,
86                        bold: true,
87                        color: "#FFFFFF"
88                      },
89                      background: {
90                        fill: {
91                          type: "Solid",
92                          color: "DarkRed",
93                          opacity: 0.8
94                        },
95                        corners: {
96                          type: "Rounded",
97                          all: 4
98                        },
99                        insideMargin: {
100                          left: 6,
101                          right: 6
102                        }
103                      }
104                    },
105                    {
106                      anchor: "RightTop",
107                      xPadding: 5,
108                      yPadding: 4,
109                      valign: "Bottom",
110                      halign: "Left",
111                      format: "High: {%HighValue}{numDecimals:0}",
112                      font: {
113                        family: "Tahoma",
114                        size: 9,
115                        bold: true,
116                        color: "#FFFFFF"
117                      },
118                      background: {
119                        fill: {
120                          type: "Solid",
121                          color: "Green",
122                          opacity: 0.8
123                        },
124                        corners: {
125                          type: "Rounded",
126                          all: 4
127                        },
128                        insideMargin: {
129                          left: 6,
130                          right: 6
131                        }
132                      }
133                    }
134                  ]
135                }
136              ]
137            }
138          }
139        }
140      }
141    ],
142    timeScale: {
143      selectedRange: {
144        type: "Unit",
145        unit: "Year",
146        count: 1
147      }
148    }
149  }
150}

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.