Reputation: 455
Is there a way to remove the word "Zoom" from the rangeSelector in HighStock? It's self-explanatory what the bar does, and the word takes up real estate that I could use to add another zoom option, like "1w" for one week.
Upvotes: 4
Views: 963
Reputation: 7739
use this it will work fine
Highcharts.setOptions({
lang:{
rangeSelectorZoom: ''
}
});
Upvotes: 3
Reputation: 4769
Use following css
.highcharts-range-selector-buttons>text:first-child{
display:none;
}
Here is working fiddle
Upvotes: 2