Hide text scale by range

Does anyone know how to hide the text “enlarge” in the Highstock RangeSelector area? I already looked at the API page , but could not find a solution.

enter image description here

Thanks in advance!

+4
source share
1 answer

You can use lang options and set an empty string.

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

http://jsfiddle.net/q0ra5tk6/

+12
source

Source: https://habr.com/ru/post/1615023/


All Articles