Map中的HighCharts货币

sy5wg1nm  于 2022-11-10  发布在  Highcharts
关注(0)|答案(1)|浏览(159)

在我的HighChartsMap中,我有货币值。在悬停时,我希望它们显示为$,但它们只是显示为原始数字。
这是我目前掌握的情况

series: [
                {
                    type: 'map',
                    name: 'Orders $',
                    states: {
                        hover: {
                            color: '#BADA55',
                        },
                    },
                    dataLabels: {
                        enabled: true,
                        format: '{point.name}',
                    },
                    allAreas: true,
                    data: this.model,
                },
            ],
z6psavjg

z6psavjg1#

tooltip配置对象中设置pointFormat属性就足够了:

tooltip: {
    ...,
    pointFormat: '{point.value}$'
  }

现场演示:https://jsfiddle.net/BlackLabel/xp71L0jv/
API引用:https://api.highcharts.com/highcharts/tooltip.pointFormat

相关问题