Creates a deviation chart that can be used in the aggregation "deviations" of a graphomate.ui.charts.Chart. For each Deviation in that aggregation the graphomate chart renders an additional axis that displays the percentage or absolute deviations between two data series.
Usage Example
var chart = new graphomate.ui.charts.Chart({
chartType: graphomate.ui.charts.enums.ChartType.Bar,
series1: [5, 16, 17, 20],
highlightMode: graphomate.ui.charts.enums.HighlightMode.Single,
highlights:[
new graphomate.ui.charts.Highlight({
startElement: 1,
endElement: 3
})
]
});
Add Comment