highcharts - Is it possible to supply multiple yAxis from with data in one series -
i want supply single series of data multiple y axis rather duplicate data , put y values in 3 separate series.
is possible tell each yaxis value pull data object?
data: [{ name: 'point1', x: 123, y0: 1, y1: 4, y2: 18
is possible have 'y' in data object array 1 value each y axis?
data: [{ name: 'point1', x: 123, y: [1,4,18]
no, need use separate series. if want have 1 series in legend, use linkedto
option.
Comments
Post a Comment