如何从Highmap中的图例中删除名称

问题描述 投票:0回答:1

我以这个https://www.highcharts.com/maps/demo/doubleclickzoomto作为我的应用程序示例,想问一下如何删除图例名称(1、10、100、1k)?

highcharts
1个回答
0
投票

您可以通过这种方式禁用标签:

    colorAxis: {
        ...,
        labels: {
            enabled: false
        }
    }

实时演示: https://jsfiddle.net/BlackLabel/2b0ngcsk/

API参考: https://api.highcharts.com/highcharts/colorAxis.labels.enabled

© www.soinside.com 2019 - 2024. All rights reserved.