Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

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. 

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
		})
    ]
});




  • No labels