Is it possible to have multiple candlestick series on the same axis and have them grouped next to each other like columns? Right now,they render on top of each other if their y values are similar. I have tried the series options related to this( point padding, grouping ) and they do not work.
Asked
Active
Viewed 413 times
0
-
So you need to group two series or group points in each serie ? – Sebastian Bochan Aug 13 '13 at 10:45
1 Answers
0
Yes, you can add the option "dataGrouping" to the series this way:
serie = {
type: 'candlestick',
name: 'test',
data: seriesdata,
dataGrouping: {
enabled: true
}
}
For further information, check this: http://api.highcharts.com/highstock#plotOptions.series.dataGrouping

Johnny Clara
- 481
- 6
- 18