Reputation: 3527
I want to disable the use of navigator in highcharts but still show it as "full" small chart.
Is it possible?
Upvotes: 0
Views: 1609
Reputation: 108512
Another way to hide them within the API is:
navigator: {
handles: {
backgroundColor: 'transparent',
borderColor: 'transparent'
}
},
Fiddle here.
Upvotes: 1
Reputation: 45079
Yes, you can hide them in callback: http://jsfiddle.net/nX37D/
But user still will have possibility to change extremes by using handles (even if they are invisible). To change that behavior, you will need to edit sources.
$('#container').highcharts('StockChart', options, function (chart) {
var handles = chart.scroller.handles;
setTimeout(function () {
handles[0].hide();
handles[1].hide();
}, 1);
});
Upvotes: 2