You are browsing a class reference for deprecated Version 2 of the JavaScript Charts.
Documentation for other versions: amCharts 4 (current) or amCharts 3.
Inheritance: AmSerialChart → AmRectangularChart → AmCoordinateChart → AmChart
AmSerialChart is the class you have to use for majority of chart types. The supported chart types are: line, area, column, bar, step line, smoothed line, candlestick and OHLC. The chart can be rotated by 90 degrees so the column chart becomes bar chart. The chart supports simple and logarithmic scales, it can have multiple value axes. The chart can place data points at equal intervals or can parse dates and place data points at irregular intervals.
Example:
var chartData = [{title:"sample 1",value:130},{title:"sample 2",value:26}]; var chart = new AmCharts.AmSerialChart(); chart.categoryField = "title"; chart.dataProvider = chartData; var graph = new AmCharts.AmGraph(); graph.valueField = "value"; graph.type = "column"; graph.fillAlphas = 1; chart.addGraph(graph); chart.write("chartdiv");
Property | Type | Default | Description |
---|---|---|---|
angle | Number | 0 | The angle of the 3D part of plot area. This creates a 3D effect (if the "depth3D" is > 0). |
autoMarginOffset | Number | 10 | Space left from axis labels/title to the chart's outside border, if autoMargins set to true. |
autoMargins | Boolean | true | Specifies if margins of a chart should be calculated automatically so that labels of axes would fit. The chart will adjust only margins with axes. Other margins will use values set with marginRight, marginTop, marginLeft and marginBottom properties. |
backgroundColor | String | #FFFFFF | Background color. You should set backgroundAlpha to >0 value in order background to be visible. We recommend setting background color directly on a chart's DIV instead of using this property. |
balloon | AmBalloon | AmBalloon | The chart creates AmBalloon class itself. If you want to customize balloon, get balloon instance using this property, and then change balloon's properties. |
borderAlpha | Number | 0 | Opacity of chart's border. Value range is 0 - 1. |
borderColor | String | #000000 | Color of chart's border. You should set borderAlpha >0 in order border to be visible. We recommend setting border color directly on a chart's DIV instead of using this property. |
categoryAxis | CategoryAxis | instance of CategoryAxis | Read-only. Chart creates category axis itself. If you want to change some properties, you should get this axis from the chart and set properties to this object. |
categoryField | String | Category field name tells the chart the name of the field in your dataProvider object which will be used for category axis values. | |
chartCursor | ChartCursor | Chart cursor. | |
chartData | Array | Read-only. Array of SerialDataItem objects generated from dataProvider. | |
chartScrollbar | ChartScrollbar | Chart scrollbar. | |
color | String | #000000 | Text color. |
colors | Array | ['#FF6600', '#FCD202', '#B0DE09', '#0D8ECF', '#2A0CD0', '#CD0D74', '#CC0000', '#00CC00', '#0000CC', '#DDDDDD', '#999999', '#333333', '#990000'] | Specifies the colors of the graphs if the lineColor of a graph is not set. It there are more graphs then colors in this array, the chart picks random color. |
columnSpacing | Number | 5 | The gap in pixels between two columns of the same category. |
columnSpacing3D | Number | 0 | Space between 3D stacked columns. |
columnWidth | Number | 0.8 | Relative width of columns. Value range is 0 - 1. |
dataProvider | Array | Array holding chart's data. | |
depth3D | Number | 0 | The depth of the 3D part of plot area. This creates a 3D effect (if the "angle" is > 0). |
endDate | Date | Read-only. If category axis parses dates endDate indicates date to which the chart is currently displayed. | |
endIndex | Number | Read-only. Category index to which the chart is currently displayed. | |
fontFamily | String | Verdana | Font family. |
fontSize | Number | 11 | Font size. |
graphs | Array | The array of graphs belonging to this chart. To add/remove graph use addGraph/removeGraph methods instead of adding/removing graphs directly to array. | |
height | Number/String | 100% | Height of a chart. "100%" means the chart's height will be equal to it's container's (DIV) height and will resize if height of the container changes. Set a number instead of percents if your chart's size needs to be fixed. |
legendDiv | DIV object | Reference to the div of the legend. | |
marginBottom | Number | 20 | Number of pixels between the container's bottom border and plot area. This space can be used for bottom axis' values. If autoMargin is true and bottom side has axis, this property is ignored. |
marginLeft | Number | 20 | Number of pixels between the container's left border and plot area. This space can be used for left axis' values. If autoMargin is true and left side has axis, this property is ignored. |
marginRight | Number | 20 | Number of pixels between the container's right border and plot area. This space can be used for Right axis' values. If autoMargin is true and right side has axis, this property is ignored. |
marginsUpdated | Boolean | false | Flag which should be set to false if you need margins to be recalculated on next chart.validateNow() call. |
marginTop | Number | 20 | Number of pixels between the container's top border and plot area. This space can be used for top axis' values. If autoMargin is true and top side has axis, this property is ignored. |
maxSelectedSeries | Number | Maximum number of series allowed to select. | |
maxSelectedTime | Number | The longest time span allowed to select (in milliseconds) for example, 259200000 will limit selection to 3 days. | |
minSelectedTime | Number | 0 | The shortest time span allowed to select (in milliseconds) for example, 1000 will limit selection to 1 second. |
numberFormatter | Object | {precision:-1, decimalSeparator:'.', thousandsSeparator:','} | Object with precision, decimalSeparator and thousandsSeparator set which will be used for number formatting. Precision set to -1 means that values won't be rounded. |
panEventsEnabled | Boolean | false | This setting affects touch-screen devices only. If a chart is on a page, and panEventsEnabled are set to true, the page won't move if the user touches the chart first. If a chart is big enough and occupies all the screen of your touch device, the user won’t be able to move the page at all. That's why the default value is "false". If you think that selecting/panning the chart or moving/pinching the map is a primary purpose of your users, you should set panEventsEnabled to true. |
pathToImages | String | Specifies path to the folder where images like resize grips, lens and similar are. | |
percentFormatter | Object | {precision:2, decimalSeparator:'.', thousandsSeparator:','} | Object with precision, decimalSeparator and thousandsSeparator set which will be used for formatting percent values. |
plotAreaBorderAlpha | Number | 0 | The opacity of plot area's border. Value range is 0 - 1. |
plotAreaBorderColor | String | #000000 | The color of the plot area's border. Note, the it is invisible by default, as plotAreaBorderAlpha default value is 0. Set it to a value higher than 0 to make it visible. |
plotAreaFillAlphas | Number | 0 | Opacity of plot area. Plural form is used to keep the same property names as our Flex charts'. Flex charts can accept array of numbers to generate gradients. Although you can set array here, only first value of this array will be used. |
plotAreaFillColors | String/Array | #FFFFFF | You can set both one color if you need a solid color or array of colors to generate gradients, for example: ["#000000", "#0000CC"] |
plotAreaGradientAngle | Number | 0 | If you are using gradients to fill the plot area, you can use this property to set gradient angle. The only allowed values are horizontal and vertical: 0, 90, 180, 270. |
prefixesOfBigNumbers | Array | [{number:1e+3,prefix:"k"},{number:1e+6,prefix:"M"},{number:1e+9,prefix:"G"},{number:1e+12,prefix:"T"},{number:1e+15,prefix:"P"},{number:1e+18,prefix:"E"},{number:1e+21,prefix:"Z"},{number:1e+24,prefix:"Y"}] | Prefixes which are used to make big numbers shorter: 2M instead of 2000000, etc. Prefixes are used on value axes and in the legend. To enable prefixes, set usePrefixes property to true. |
prefixesOfSmallNumbers | Array | [{number:1e-24, prefix:"y"},{number:1e-21, prefix:"z"},{number:1e-18, prefix:"a"},{number:1e-15, prefix:"f"},{number:1e-12, prefix:"p"},{number:1e-9, prefix:"n"},{number:1e-6, prefix:"μ"},{number:1e-3, prefix:"m"}] | Prefixes which are used to make small numbers shorter: 2μ instead of 0.000002, etc. Prefixes are used on value axes and in the legend. To enable prefixes, set usePrefixes property to true. |
rotate | Boolean | false | If you set this to true, the chart will be rotated by 90 degrees (the columns will become bars). |
sequencedAnimation | Boolean | true | Specifies whether the animation should be sequenced or all objects should appear at once. |
startAlpha | Number | 1 | The initial opacity of the column/line. If you set startDuration to a value higher than 0, the columns/lines will fade in from startAlpha. Value range is 0 - 1. |
startDate | Date | Read-only. If category axis parses dates startDate indicates date from which the chart is currently displayed. | |
startDuration | Number | 0 | Duration of the animation, in seconds. |
startEffect | String | elastic | Animation effect. Possible values are ">", "<", elastic" and "bounce". |
startIndex | Number | Read-only. Category index from which the chart is currently displayed. | |
trendLines | Array | Array of trend lines added to a chart. You can add trend lines to a chart using this array or access already existing trend lines | |
urlTarget | String | _self | Target of url. |
usePrefixes | Boolean | false | If true, prefixes will be used for big and small numbers. You can set arrays of prefixes via prefixesOfSmallNumbers and prefixesOfBigNumbers properties. |
valueAxes | Array | The array of value axes. To add/remove value axis use addValueAxis/removeValueAxis methods instead of adding/removing axes directly to array. Chart creates one value axis automatically, so if you need only one value axis, you don't need to create it. | |
version | String | Read-only. Indicates current version of a script. | |
zoomOutButton | Object | {backgroundColor:'#b2e1ff',backgroundAlpha:1} | It's a simple object containing information about zoom-out button. Other available properties of this object are fontSize and color. color specifies text color of a button. |
zoomOutOnDataUpdate | Boolean | true | Specifies if chart should zoom-out when data is updated. |
zoomOutText | String | Show all | Text in the zoom-out button. |
Name | Parameters | Returns | Description |
---|---|---|---|
addChartCursor(cursor) | cursor - instace of ChartCursor | Adds a ChartCursor object to a chart | |
addChartScrollbar(scrollbar) | scrollbar - instance of ChartScrollbar | Adds a ChartScrollbar to a chart | |
addGraph(graph) | graph - instance of AmGraph | Adds a graph to the chart. | |
addLabel(x, y, text, align, size, color, rotation, alpha, bold, url) | x - horizontal coordinate y - vertical coordinate text - label's text align - alignment (left/right/center) size - text size color - text color rotation - angle of rotation alpha - label alpha bold - specifies if text is bold (true/false), url - url of a | Adds a label on a chart. You can use it for labeling axes, adding chart title, etc. x and y coordinates can be set in number, percent, or a number with ! in front of it - coordinate will be calculated from right or bottom instead of left or top. | |
addLegend(legend, legendDivID) | legend - AmLegend, legendDivID - id or reference to legend div (optional) | Adds a legend to the chart. By default, you don't need to create div for your legend, however if you want it to be positioned in some different way, you can create div anywhere you want and pass id or reference to your div as a second parameter. (NOTE: This method will not work on StockPanel.) | |
addListener(type, handler) | type - string like 'dataUpdated' (should be listed in 'events' section of this class or classes which extend this class). handler - function which is called when event happens | Adds event listener to the object. | |
addTitle(text, size, color, alpha, bold) | text - text of a title size - font size color - title color alpha - title opacity bold - boolean value indicating if title should be bold. | Adds title to the top of the chart. Pie, Radar positions are updated so that they won't overlap. Plot area of Serial/XY chart is also updated unless autoMargins property is set to false. You can add any number of titles - each of them will be placed in a new line. To remove titles, simply clear titles array: chart.titles = []; and call chart.validateNow() method. | |
addTrendLine(trendLine) | trendLine | Adds a TrendLine to a chart. You should call chart.validateNow() after this method is called in order the trend line to be visible. | |
addValueAxis(axis) | axis - instance of ValueAxis | Adds value axis to the chart. One value axis is created automatically, so if you don't want to change anything or add more value axes, you don't need to add it. | |
animateAgain() | You can trigger the animation of the chart. | ||
clear() | Clears the chart area, intervals, etc. | ||
clearLabels() | Removes all labels added to the chart. | ||
getCategoryIndexByValue(value) | value - series (category value) which index you want to find. | Number | Returns index of the specified category value. |
getGraphById(id) | id - graph's id, String | AmGraph | Returns graph by id. |
getValueAxisById(id) | id - value axis' id, String | ValueAxis | Returns value axis by id. |
hideGraph(graph) | graph - instance of AmGraph | Hide the graph (if it is visible). Usually this method is called from the Legend, when you click on the legend marker. | |
hideGraphsBalloon(graph) | graph - instance of AmGraph | Hide value balloon of a graph. Usually this method is called from the Legend, when you click on the legend text. | |
highlightGraph(graph) | graph - instance of AmGraph | Highlight the graph. Usually this method is called from the Legend, when you roll-over the legend entry. | |
invalidateSize() | Use this method to force the chart to resize to it's current container size. | ||
removeChartCursor() | Removes cursor from the chart | ||
removeChartScrollbar() | Removes scrollbar from the chart | ||
removeGraph(graph) | graph - instance of AmGraph | Removes graph from the chart. | |
removeLegend() | Removes chart's legend. | ||
removeListener(chart, type, handler) | chart - chart object, type - event name, handler - method | Removes event listener from chart object. | |
removeTrendLine(trendLine) | trendLine | Removes a trend line from a chart. You should call chart.validateNow() in order the changes to be visible. | |
removeValueAxis(axis) | axis - instance of ValueAxis | Removes value axis from the chart. When you remove value axis, all graphs assigned to this axis are also removed. | |
showGraph(graph) | graph - instance of AmGraph | Show the graph (if it is hidden). Usually this method is called from the Legend, when you click on the legend marker. | |
showGraphsBalloon(graph) | graph - instance of AmGraph | Show value balloon of a graph. Usually this method is called from the Legend, when you click on the legend text. | |
unhighlightGraph(graph) | graph - instance of AmGraph | UnhighlightGraph the graph. Usually this method is called from the Legend, when you roll-out the legend entry. | |
validateData() | This method should be called after data in your data provider changed or a new array was set to dataProvider. After calling this method the chart will parse data and redraw. | ||
validateNow() | This method should be called after you changed one or more properties of any class. The chart will redraw after this method is called. | ||
write(container) | container - id of a DIV or DIV object which will hold the chart | Adds chart to the specified DIV. | |
zoomOut() | Zooms out, charts shows all available data. | ||
zoomToCategoryValues(start, end) | start - category value, String \\ end - category value, String | Zooms the chart by the value of the category axis. | |
zoomToDates(start, end) | start - start date, Date object \\ end - end date, Date object | Zooms the chart from one date to another. | |
zoomToIndexes(start, end) | start - start index, Number \\ end - end index, Number | Zooms the chart by the index of the category. |
Name | Event object | Description |
---|---|---|
changed | {type:"changed", index:Number, zooming:Boolean, chart:AmChart} | Dispatched when cursor position is changed. "index" is a series index over which chart cursors currently is. "zooming" specifies if user is currently zooming (is selecting) the chart. |
clickGraph | {type:"clickGraph", graph:AmGraph, chart:AmChart} | Dispatched when user clicks on a graph. |
clickGraphItem | {type:"clickGraphItem", graph:AmGraph, item:GraphDataItem, index:Number, chart:AmChart} | Dispatched when user clicks on the data item (column/bullet) |
dataUpdated | {type:"dataUpdated", chart:AmChart} | Dispatched when chart is build for the first time or after validateData() method was called. |
init | {type:"init", chart:AmChart} | Dispatched when chart is build for the first time. |
rendered | {type:"rendered", chart:AmChart} | Dispatched when the chart is build for the first time. |
rightClickGraphItem | {type:"rightClickGraphItem", graph:AmGraph, item:GraphDataItem, index:Number, chart:AmChart} | Dispatched when user right-clicks on the data item (column/bullet) |
rollOutGraphItem | {type:"rollOutGraphItem", graph:AmGraph, item:GraphDataItem, index:Number, chart:AmChart} | Dispatched when user rolls-out of the data item (column/bullet) |
rollOverGraphItem | {type:"rollOverGraphItem", graph:AmGraph, item:GraphDataItem, index:Number, chart:AmChart} | Dispatched when user rolls-over data item (column/bullet) |
zoomed | {endDate:Date, endIndex:Number, endValue:String, startDate:Date, startIndex:Number, startValue:String, chart:AmChart} | Dispatched when the chart is zoomed (even for the first time, when chart is initialized) |