How to format series name in onTrackballPositionChanging ?
how to get it to appear on the tracballbehavior view?
my example is formatting the name series so that it can be added a substring
args.chartPointInfo.series!.name.toString().length < 12
? args.chartPointInfo.series!.name.toString()
: args.chartPointInfo.series!.name
.toString()
.substring(0, 12) +
'...';