Is it possible reference a point from a series within the valueSuffix parameter?
I want to include a percentage value within the Suffix by dividing the height of the series 1 column by the height of the series 2 column.
So something like the following:
valueSuffix: ( series[1].max / series[2].max ) + ‘ %’
Is this possible?
Thanks in advance!
Armin
The API states this :
valueSuffix: StringWhich means the valueSuffix can only be a String. If you want something more complex than a string, consider using
tooltip.formatterinsteadInside the formatter you will have access to the chart as
this.series.chartand from the chart you can then access any series or any point you may wish to