Versions Compared
Version | Old Version 1 | New Version 2 |
---|---|---|
Changes made by | ||
Saved on |
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Class graphomate.ui.charts.Highlight
extends sap.ui.core.Element
Quick Start
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.
Code Block | ||||
---|---|---|---|---|
| ||||
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
})
]
}); |