top of page

Add target/benchmark line to a chart in Sisense

Updated: Nov 27, 2024

Below script allow us to plot a static target line in a chart.

Supported chart types : Bar chart, Column chart, Line chart, Area chart


ree



widget.on('processresult', function(se, ev){

	ev.result.yAxis[0].plotLines = [{
				color: '#2ec7b5',
				dashStyle: 'LongDash',
				width: 4,
				value: 800,
				zIndex: 5,
				label : {
					text : 'Target'
				}
            }]
})

Possible values of dashStyle are :

'Solid',

'ShortDash',

'ShortDot',

'ShortDashDot',

'ShortDashDotDot',

'Dot',

'Dash',

'LongDash',

'DashDot',

'LongDashDot',

'LongDashDotDot'



Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating

BI Next Level is your trusted resource for BI customization, data solutions, and expert insights. Explore practical tips, scripts, and tutorials for tools like Sisense, Python, and SQL. Let’s transform your data into impactful insights together.

Quick Links
Connect with us
bottom of page