Highstock:从 rangeSelector 中删除单词 "Zoom"

Highstock: Remove the word "Zoom" from the rangeSelector

有没有办法从 HighStock 的范围选择器中删除 "Zoom" 一词?栏的作用不言自明,这个词占据了空间,我可以用它来添加另一个缩放选项,比如一周的“1w”。

使用以下css

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

这里是working fiddle

用这个就可以了

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