AmStockChart is a main class Stock chart.
Property | Type | Default | Description |
---|---|---|---|
addClassNames | Boolean | false | Specifies, if class names should be added to chart elements. |
amExport | AmExport | AmExport object. | |
animationPlayed | Boolean | Specifies if animation was already played. Animation is only played once, when chart is rendered for the first time. If you want the animation to be repeated, set this property to false. | |
autoResize | Boolean | true | Set this to false if you don't want chart to resize itself whenever its parent container size changes. |
balloon | AmBalloon | AmBalloon | Balloon object. |
categoryAxesSettings | CategoryAxesSettings | CategoryAxesSettings | Settings for category axes. |
chartCreated | Boolean | Read-only. Indicates if the chart is created. | |
chartCursorSettings | ChartCursorSettings | ChartCursorSettings | Chart cursor settings. |
chartScrollbarSettings | ChartScrollbarSettings | ChartScrollbarSettings | Chart scrollbar settings. |
classNamePrefix | String | amcharts | This prefix is added to all class names which are added to all visual elements of a chart in case addClassNames is set to true. |
colors | Array[Color] | ["#FF6600", "#FCD202", "#B0DE09", "#0D8ECF", "#2A0CD0", "#CD0D74", "#CC0000", "#00CC00", "#0000CC", "#DDDDDD", "#999999", "#333333", "#990000"] | Array of colors used by data sets if no color was set explicitly on data set itself. |
comparedDataSets | Array[DataSet] | Array of data sets selected for comparing. | |
dataDateFormat | String | Data provider of data set can have dates as Date Objects or as Strings. In case you use strings, you need to set data date format and the chart will parse dates to date objects. Check this page for date formatting strings. Please note that two-digit years (YY) is NOT supported in this setting. | |
dataSets | Array[DataSet] | Array of DataSets. | |
dataSetSelector | DataSetSelector | DataSetSelector object. You can add it if you have more than one data set and want users to be able to select/compare them. | |
endDate | Read-only. Current end date of the selected period, get only. To set start/end dates, use stockChart.zoom(startDate, endDate) method. | ||
export | Object | Export config. Specifies how export to image/data export/print/annotate menu will look and behave. You can find a lot of examples in amcharts/plugins/export folder. More details can be found here. | |
extendToFullPeriod | Boolean | true | Specifies if the chart should always display full first and last data item when data is grouped to a longer period if the chart is zoomed from the beginning or end of the data. |
firstDayOfWeek | Number | 1 | Defines on which day week starts. 0 - Sunday, 1 - Monday... |
glueToTheEnd | Boolean | false | If set to true the scope of the data view will be set to the end after data update. |
language | String | Allows changing language easily. Note: you should include language js file from amcharts/lang or ammap/lang folder and then use variable name used in this file, like chart.language = "de". | |
legendSettings | LegendSettings | LegendSettings | Legend settings. |
listeners | Array[Object] | You can add listeners of events using this property. Example: listeners = [{"event":"dataUpdated", "method":handleEvent}]; | |
mainDataSet | DataSet | Data set selected as main. | |
mouseWheelScrollEnabled | Boolean | false | Specifies if scrolling of a chart with mouse wheel is enabled. |
panels | Array[StockPanel] | Array of StockPanels (charts). | |
panelsSettings | PanelsSettings | PanelsSettings | Settings for stock panels. |
path | String | amcharts/ | Specifies absolute or relative path to amCharts files, i.e. "amcharts/". (where all .js files are located) If relative URLs are used, they will be relative to the current web page, displaying the chart. You can also set path globally, using global JavaScript variable AmCharts_path. If this variable is set, and "path" is not set in chart config, the chart will assume the path from the global variable. This allows setting amCharts path globally. I.e.: var AmCharts_path = "/libs/amcharts/"; "path" parameter will be used by the charts to locate it's files, like images, plugins or patterns. |
pathToImages | String | Specifies path to the folder where images like resize grips, lens and similar are. IMPORTANT: Since V3.4.12, you should use "path" to point to amCharts directory instead. The "pathToImages" will be automatically set and does not need to be in the chart config, unless you keep your images separately from other amCharts files. | |
periodSelector | PeriodSelector | Period selector object. You can add it if you want user's to be able to enter date ranges or zoom chart with predefined period buttons. | |
processTimeout | Number | 0 | If you set it to 1 millisecond or some bigger value, chart will be built in chunks instead of all at once. This is useful if you work with a lot of data and the initial build of the chart takes a lot of time, which freezes the whole web application by not allowing other processes to do their job while the chart is busy. |
scrollbarChart | AmSerialChart | Read-only. Scrollbar's chart object. | |
startDate | Read-only. Current start date of the selected period. To set start/end dates, use stockChart.zoom(startDate, endDate) method. | ||
stockEventsSettings | StockEventsSettings | StockEventsSettings | Settings for stock events. |
type | String | Read-only. Type of the chart. | |
valueAxesSettings | ValueAxesSettings | ValueAxesSettings | Settings for value axes. |
version | String | Read-only. Indicates current version of a script. | |
zoomOutOnDataSetChange | Boolean | false | Specifies whether the chart should zoom-out when main data set is changed. |
Name | Parameters | Returns | Description |
---|---|---|---|
addListener(type, handler) | type - string like 'dataUpdated' (should be listed in 'events' section of this class). handler - function which is called when event happens | Adds event listener to the object. | |
addPanel(panel) | panel - [[StockPanel]] | Adds panel to the stock chart. Requires stockChart.validateNow() method to be called after this action. | |
addPanelAt(panel, index) | panel - [[StockPanel]], index - Number | Adds panel to the stock chart at a specified index. Requires stockChart.validateNow() method to be called after this action. | |
clear() | Destroys chart, all timeouts and listeners. | ||
hideStockEvents() | Hides event bullets. | ||
removeListener(obj, type, handler) | Removes event listener from the object. | ||
removePanel(panel) | panel - [[StockPanel]] | Removes panel from the stock chart. Requires stockChart.validateNow() method to be called after this action. | |
showStockEvents() | Shows event bullets. | ||
validateData() | Method which should be called after data was changed. | ||
validateNow(validateData, skipEvents) | Method which forces the stock chart to rebuild. Should be called after properties are changed. | This method should be called after you changed one or more properties of any class. The chart will redraw after this method is called.Both attributes, validateData and skipEvents are optional (false by default). | |
write(container) | container - id of a DIV or DIV object which will hold the chart | Chart instance | Adds chart to the specified DIV. |
zoom(startDate, endDate) | startDate, endDate - Date objects. | Zooms chart to specified dates. | |
zoomOut() | Zooms out the chart. |
Name | Event object | Description |
---|---|---|
buildStarted | {type:"buildStarted", chart:AmStockChart} | Fired just before the chart starts to build itself for the first time. Note: you might need to set processTimeout to > 0 value in order to register this event properly. |
clickStockEvent | {type:"clickStockEvent", eventObject:eventObject, graph:graph, date:date, chart:AmStockChart} | Dispatched when the user clicks on the Stock event (bullet). |
dataUpdated | {type:"dataUpdated", chart:AmStockChart} | Dispatched when the chart was updated with new data. |
init | {type:"init", chart:AmStockChart} | Dispatched when the chart is initialized for the first time. In case you want it to fire again after validateNow() method is called, set chart.chartCreated = false. |
panelRemoved | {type:"panelRemoved", panel:panel, chart:AmStockChart} | Dispatched when the StockPanel is removed. |
rendered | {type:"init", chart:AmStockChart} | Dispatched each when chart is rendered. |
rollOutStockEvent | {type:"rollOutStockEvent", eventObject:eventObject, graph:graph, date:date, chart:AmStockChart} | Dispatched when the user rolls-out of the Stock event (bullet). |
rollOverStockEvent | {type:"rollOverStockEvent", eventObject:eventObject, graph:graph, date:date, chart:AmStockChart} | Dispatched when the user rolls-over the Stock event (bullet). |
zoomed | {type:"zoomed", startDate:startDate, endDate:endDate, period:period, chart:AmStockChart} | Dispatched when the chart is zoomed (even for the first time, when chart is initialized). |