4
votes

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.

2

2 Answers

3
votes

use this it will work fine

Highcharts.setOptions({
  lang:{
    rangeSelectorZoom: ''
  }
});
2
votes

Use following css

.highcharts-range-selector-buttons>text:first-child{
 display:none;
}

Here is working fiddle