Type class
Creates a trendline for AmSerialChart and AmXYChart charts which indicates the trend of your data or covers some different purposes. Multiple can be assigned.
Example
var chart = AmCharts.makeChart("chartdiv",{
...
"trendLines": [
{
"initialValue": 1,
"initialXValue": 1,
"finalValue": 11,
"finalXValue": 12
}
]
});
Inheritance
TrendLine does not extend any other symbol.
TrendLine is not extended by any other symbol.
Properties
|
balloonText # |
Type When set, enables displaying a roll-over balloon. |
|---|---|
|
dashLength # |
Type Default Dash length. |
|
finalCategory # |
Type String, equal to category value to which trend line should be drawn. It should be used if chart doesn't parse dates. |
|
finalDate # |
Type Date to which trend line should be drawn. It can be date string (using the same date format as chart.dataDateFormat) or date object. |
|
finalImage # |
Type Allows to add an image to the end of a trend line. |
|
finalValue # |
Type Value at which trend line should end. |
|
finalXValue # |
Type Used by XY chart only. X value at which trend line should end. |
|
id # |
Type Unique id of a Trend line. You don't need to set it, unless you want to. |
|
initialCategory # |
Type String, equal to category value from which trend line should start. It should be used if chart doesn't parse dates. |
|
initialDate # |
Type Date from which trend line should start. It can be date string (using the same date format as chart.dataDateFormat) or date object. |
|
initialImage # |
Type Allows to add an image to the beginning of a trend line. |
|
initialValue # |
Type Value from which trend line should start. |
|
initialXValue # |
Type Used by XY chart only. X value from which trend line should start. |
|
isProtected # |
Type Default Used by Stock chart. If this property is set to true, this trend line won't be removed when clicked on eraser tool. |
|
lineAlpha # |
Type Default Line opacity. |
|
lineColor # |
Type Default Line color. |
|
lineThickness # |
Type Default Line thickness. |
Methods
TrendLine does not have any methods.
Events
| #click |
Param Dispatched when user clicks on a trend line. |
|---|---|
| #rollOut |
Param Dispatched when user rolls out of a trend line. |
| #rollOver |
Param Dispatched when user clicks rolls-over a trend line. |
Adapters
TrendLine does not have any adapters.