Lines Matching refs:data

8 By default all amCharts libraries accept data in JSON format. It needs to be 
11 This plugin introduces are native wrapper that enables automatic loading of data
12 from external data data sources in CSV and JSON formats.
14 Most of the times you will just need to provide a URL of the external data
20 Due to security measures implemented in most of the browsers, the external data
28 Loading data from another domain than the web page is loaded is possible but is
30 you are loading data from.
32 For more about loading data across domains use the following thread:
46 ### 2) Add data source properties to your chart configuration.
54 "url": "data.json",
68 "url": "data.csv",
82 data, such as "separator".
91 async | true | If set to false (not recommended) everything will wait until data is fully loaded
97 format | json | Type of data: json, csv
101 …ed to "post-process" loaded data before passing it on to chart. The handler function will receive …
104 showCurtain | true| Show curtain over the chart area when loading data
105 reload | 0 | Reload data every X seconds
106 reverse | false | [CSV only] add data points in revers order
107 skip | 0 | [CSV only] skip X first rows in data (includes first row if useColumnNames is used)
108 skipEmpty | true | [CSV only] Ignore empty lines in data
109 timestamp | false | Add current timestamp to data URLs (to avoid caching)
110 useColumnNames | false | [CSV only] Use first row in data as column names when parsing
116 with the exception that `dataLoader` is set as a property to the data set
144 "url": "data/MSFT.csv",
158 ### Can I also load event data the same way?
160 Sure. You just add a `eventDataLoader` object to your data set. All the same
166 If you want to add additional headers to your data load HTTP requests, use
171 "url": "data/serial.json",
181 ## Manually triggering a reload of all data
183 Once chart is initialized, you can trigger the reload of all data manually by
189 Data Loader can call your own function when certain event happens, like data
208 "url": "data.json",
311 * Added "progress" handler, which can be used to monitor data load progress
320 * Tweaks to allow better animation after data load on Pie chart
323 * Fixed error related to headers not being set when using standalone data load functions
343 * Added `chart.dataLoader.loadData()` function which can be used to manually trigger all data reload
362 * Added global data load methods that can be used to load and parse data by code outside plugin