score:42

Accepted answer

You can pass resetZoomButton as display: none and call zoomOut.

chart: {
    resetZoomButton: {
        theme: {
            display: 'none'
        }
    }
}

$('#resetZoom').click(function() {
    chart.zoomOut();
});

<input type="button" value="reset zoom" id="resetZoom"/>

Demo

score:0

Just get the chart and call zoomout:

chart = $("#your-chart").highcharts();
chart.zoomOut();

Related Query

More Query from same tag