Does anyone know how to hide 'zoom' text on highstock's rangeSelector? I already looked up the API page, but could't find the solution.
Thanks in advance!
You can use lang options and set empty string.
Highcharts.setOptions({
lang:{
rangeSelectorZoom: ''
}
});
http://jsfiddle.net/q0ra5tk6/
The rangeSelectorZoom property as suggested by Sebastian is not present in 6.1.0 anymore. A work around if you don't need the From and To Inputs, as it was my case is to not show the label at all:
rangeSelector: {
labelStyle: {
display: 'none'
}
}
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