score:2

Accepted answer

you can try to use http://jsfiddle.net/f7y9p/

yaxis: {
            height: 0,
            gridlinewidth: 0,
            labels: {
                enabled: false
            }
        },
        xaxis: {
            linewidth: 0,
            ticklength : 0,
            labels: {
                enabled: false
            }                   
        },
series : [{
            name : 'aapl',
            linewidth: 0,
            marker: {
                enabled: false,
                states: {
                    hover: {
                        enabled: false
                    }
                }
            },
            data : data,
            tooltip: {
                valuedecimals: 2
            }
        }]

empty chart with only navigator, then catch aftersetextremes() (http://api.highcharts.com/highstock#xaxis.events.aftersetextremes) and if you get values, then set it in other charts by setextreme() function http://api.highcharts.com/highstock#axis.setextremes().


Related Query

More Query from same tag