user4246994
user4246994

Reputation:

How to remove bottom zoom bar on highcharts?

How to remove this hightlighted area in highcharts? please share your answers. thanks enter image description here

Upvotes: 3

Views: 1799

Answers (1)

wergeld
wergeld

Reputation: 14442

This is done by disabling the navigator. See enabled. Simple example:

$(function () {
    $('#container').highcharts('StockChart', {

        navigator: {
            enabled: false
        },

        rangeSelector: {
            selected: 1
        },

        series: [{
            name: 'USD to EUR',
            data: usdeur
        }]
    });
});

Upvotes: 8

Related Questions