Is it possible to move the Highstock chart navigator from the bottom of the chart to the top?
Yes it is possible, please take look at example: http://jsfiddle.net/jBUGN/
navigator: {
top:40,
},
Upgraded answer from Sebastian: http://jsfiddle.net/Fusher/jBUGN/18/ Instead of setting top for xAxis and yAxis, set marginTop: value:
var chart = new Highcharts.StockChart({
chart: {
renderTo: 'container',
marginTop: 140
},
navigator: {
top:40,
},
rangeSelector: {
selected: 1
},
series: [{
name: 'USD to EUR',
data: usdeur
}]
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With