In stockchart present in highchart, is it possible to show scrollbar chart same as the main chart.
0
votes
1 Answers
0
votes
You need to show additional series in navigator by using showInNavigator
property and enable stacking
for the series in navigator.
plotOptions: {
series: {
stacking: 'normal',
showInNavigator: true
}
},
series: [{
data: [...]
}, {
data: [...]
}, {
data: [...]
}],
navigator: {
series: {
stacking: 'normal',
type: 'column'
}
}
Live demo: http://jsfiddle.net/BlackLabel/6m4e8x0y/4951/
API Reference:
https://api.highcharts.com/highstock/series.column.showInNavigator