Take a measure value from a numeric point chart and dynamically write it to a text box

var arr = Chart_1.getDataSource().getResultSet();
var value=   ConvertUtils.stringToNumber(  arr[0][Alias.MeasureDimension].rawValue);
if(value < 500000000)
	{Text_1.applyText("Lower than 500 mil");}

Code language: JavaScript (javascript)
Scroll to Top