gwt highcharts - Can you group multiple candlestick series next to each other in a highstock chart? -
is possible have multiple candlestick series on same axis , have them grouped next each other columns? right now,they render on top of each other if y values similar. have tried series options related this( point padding, grouping ) , not work.
yes, can add option "datagrouping" series way:
serie = { type: 'candlestick', name: 'test', data: seriesdata, datagrouping: { enabled: true } }
for further information, check this: http://api.highcharts.com/highstock#plotoptions.series.datagrouping
Comments
Post a Comment