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="Area" data_provider="dp1" color="#626262">
32             <name><![CDATA[NASDAQ Composite (^IXIC):]]></name>
33             <area_series>
34               <fill color="White" opacity="0.4" />
35               <line thickness="2" />
36             </area_series>
37           </series>
38         </series_list>
39         <value_axes>
40           <primary>
41             <scale minimum_mode="CustomValue" minimum="1200" maximum_mode="CustomValue" maximum="3000" />
42             <axis_markers>
43               <range_markers>
44                 <range_marker low_value="1200" high_value="3000" affects_scale_range="true">
45                   <low_line enabled="false" />
46                   <high_line enabled="false" />
47                   <fill type="Gradient" opacity="0.4">
48                     <gradient angle="90">
49                       <keys>
50                         <key color="Green" />
51                         <key color="Yellow" />
52                         <key color="Red" />
53                       </keys>
54                     </gradient>
55                   </fill>
56                   <labels>
57                     <label anchor="RightBottom" x_padding="5" y_padding="4" valign="Top" halign="Left">
58                       <format><![CDATA[Low: {%LowValue}{numDecimals:0}]]></format>
59                       <font family="Tahoma" size="9" bold="true" color="#FFFFFF" />
60                       <background>
61                         <fill type="Solid" color="DarkRed" opacity="0.8" />
62                         <corners type="Rounded" all="4" />
63                         <inside_margin left="6" right="6" />
64                       </background>
65                     </label>
66                     <label anchor="RightTop" x_padding="5" y_padding="4" valign="Bottom" halign="Left">
67                       <format><![CDATA[High: {%HighValue}{numDecimals:0}]]></format>
68                       <font family="Tahoma" size="9" bold="true" color="#FFFFFF" />
69                       <background>
70                         <fill type="Solid" color="Green" opacity="0.8" />
71                         <corners type="Rounded" all="4" />
72                         <inside_margin left="6" right="6" />
73                       </background>
74                     </label>
75                   </labels>
76                 </range_marker>
77               </range_markers>
78             </axis_markers>
79           </primary>
80         </value_axes>
81       </chart>
82     </charts>
83     <time_scale>
84       <selected_range type="Unit" unit="Year" count="1" />
85     </time_scale>
86   </settings>
87 </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: "Area",
47            dataProvider: "dp1",
48            color: "#626262",
49            name: "NASDAQ Composite (^IXIC):",
50            areaSeries: {
51              fill: {
52                color: "White",
53                opacity: 0.4
54              },
55              line: {
56                thickness: 2
57              }
58            }
59          }
60        ],
61        valueAxes: {
62          primary: {
63            scale: {
64              minimumMode: "CustomValue",
65              minimum: 1200,
66              maximumMode: "CustomValue",
67              maximum: 3000
68            },
69            axisMarkers: {
70              rangeMarkers: [
71                {
72                  lowValue: 1200,
73                  highValue: 3000,
74                  affectsScaleRange: true,
75                  lowLine: {
76                    enabled: false
77                  },
78                  highLine: {
79                    enabled: false
80                  },
81                  fill: {
82                    type: "Gradient",
83                    opacity: 0.4,
84                    gradient: {
85                      angle: 90,
86                      keys: [
87                        {
88                          color: "Green"
89                        },
90                        {
91                          color: "Yellow"
92                        },
93                        {
94                          color: "Red"
95                        }
96                      ]
97                    }
98                  },
99                  labels: [
100                    {
101                      anchor: "RightBottom",
102                      xPadding: 5,
103                      yPadding: 4,
104                      valign: "Top",
105                      halign: "Left",
106                      format: "Low: {%LowValue}{numDecimals:0}",
107                      font: {
108                        family: "Tahoma",
109                        size: 9,
110                        bold: true,
111                        color: "#FFFFFF"
112                      },
113                      background: {
114                        fill: {
115                          type: "Solid",
116                          color: "DarkRed",
117                          opacity: 0.8
118                        },
119                        corners: {
120                          type: "Rounded",
121                          all: 4
122                        },
123                        insideMargin: {
124                          left: 6,
125                          right: 6
126                        }
127                      }
128                    },
129                    {
130                      anchor: "RightTop",
131                      xPadding: 5,
132                      yPadding: 4,
133                      valign: "Bottom",
134                      halign: "Left",
135                      format: "High: {%HighValue}{numDecimals:0}",
136                      font: {
137                        family: "Tahoma",
138                        size: 9,
139                        bold: true,
140                        color: "#FFFFFF"
141                      },
142                      background: {
143                        fill: {
144                          type: "Solid",
145                          color: "Green",
146                          opacity: 0.8
147                        },
148                        corners: {
149                          type: "Rounded",
150                          all: 4
151                        },
152                        insideMargin: {
153                          left: 6,
154                          right: 6
155                        }
156                      }
157                    }
158                  ]
159                }
160              ]
161            }
162          }
163        }
164      }
165    ],
166    timeScale: {
167      selectedRange: {
168        type: "Unit",
169        unit: "Year",
170        count: 1
171      }
172    }
173  }
174}

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.