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               <line_markers>
39                 <line_marker value="1800" affects_scale_range="true">
40                   <line dashed="true" thickness="2" dash_length="5" dash_space="5" pixel_hinting="true" />
41                   <labels>
42                     <label anchor="Right" x_padding="10" y_padding="4" valign="Top" halign="Left">
43                       <format><![CDATA[Upper Limit: {%Value}]]></format>
44                       <font family="Tahoma" size="9" bold="true" color="#333333" />
45                       <background enabled="true">
46                         <fill enabled="true" type="Solid" color="#FEFFE6" opacity="1" />
47                         <corners type="Rounded" all="4" />
48                         <border enabled="true" color="#CBAF87" />
49                         <inside_margin left="4" right="4" />
50                       </background>
51                     </label>
52                   </labels>
53                 </line_marker>
54                 <line_marker value="1200" affects_scale_range="true">
55                   <line dashed="true" thickness="2" dash_length="5" dash_space="5" pixel_hinting="true" color="Green" />
56                   <labels>
57                     <label anchor="Center" x_padding="0" y_padding="4" valign="Top" halign="Center">
58                       <format><![CDATA[Lower Limit: {%Value}]]></format>
59                       <font family="Tahoma" size="9" bold="true" color="#333333" />
60                       <background enabled="true">
61                         <fill enabled="true" type="Solid" color="#FEFFE6" opacity="1" />
62                         <corners type="Rounded" all="4" />
63                         <border enabled="true" color="#CBAF87" />
64                         <inside_margin left="4" right="4" />
65                       </background>
66                     </label>
67                   </labels>
68                 </line_marker>
69               </line_markers>
70             </axis_markers>
71           </primary>
72         </value_axes>
73       </chart>
74     </charts>
75     <time_scale>
76       <selected_range type="Unit" unit="Year" count="1" />
77     </time_scale>
78   </settings>
79 </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              lineMarkers: [
56                {
57                  value: 1800,
58                  affectsScaleRange: true,
59                  line: {
60                    dashed: true,
61                    thickness: 2,
62                    dashLength: 5,
63                    dashSpace: 5,
64                    pixelHinting: true
65                  },
66                  labels: [
67                    {
68                      anchor: "Right",
69                      xPadding: 10,
70                      yPadding: 4,
71                      valign: "Top",
72                      halign: "Left",
73                      format: "Upper Limit: {%Value}",
74                      font: {
75                        family: "Tahoma",
76                        size: 9,
77                        bold: true,
78                        color: "#333333"
79                      },
80                      background: {
81                        enabled: true,
82                        fill: {
83                          enabled: true,
84                          type: "Solid",
85                          color: "#FEFFE6",
86                          opacity: 1
87                        },
88                        corners: {
89                          type: "Rounded",
90                          all: 4
91                        },
92                        border: {
93                          enabled: true,
94                          color: "#CBAF87"
95                        },
96                        insideMargin: {
97                          left: 4,
98                          right: 4
99                        }
100                      }
101                    }
102                  ]
103                },
104                {
105                  value: 1200,
106                  affectsScaleRange: true,
107                  line: {
108                    dashed: true,
109                    thickness: 2,
110                    dashLength: 5,
111                    dashSpace: 5,
112                    pixelHinting: true,
113                    color: "Green"
114                  },
115                  labels: [
116                    {
117                      anchor: "Center",
118                      xPadding: 0,
119                      yPadding: 4,
120                      valign: "Top",
121                      halign: "Center",
122                      format: "Lower Limit: {%Value}",
123                      font: {
124                        family: "Tahoma",
125                        size: 9,
126                        bold: true,
127                        color: "#333333"
128                      },
129                      background: {
130                        enabled: true,
131                        fill: {
132                          enabled: true,
133                          type: "Solid",
134                          color: "#FEFFE6",
135                          opacity: 1
136                        },
137                        corners: {
138                          type: "Rounded",
139                          all: 4
140                        },
141                        border: {
142                          enabled: true,
143                          color: "#CBAF87"
144                        },
145                        insideMargin: {
146                          left: 4,
147                          right: 4
148                        }
149                      }
150                    }
151                  ]
152                }
153              ]
154            }
155          }
156        }
157      }
158    ],
159    timeScale: {
160      selectedRange: {
161        type: "Unit",
162        unit: "Year",
163        count: 1
164      }
165    }
166  }
167}

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.