在我的HighChartsMap中,我有货币值。在悬停时,我希望它们显示为$,但它们只是显示为原始数字。
这是我目前掌握的情况
series: [
{
type: 'map',
name: 'Orders $',
states: {
hover: {
color: '#BADA55',
},
},
dataLabels: {
enabled: true,
format: '{point.name}',
},
allAreas: true,
data: this.model,
},
],
1条答案
按热度按时间z6psavjg1#
在
tooltip
配置对象中设置pointFormat
属性就足够了:现场演示:https://jsfiddle.net/BlackLabel/xp71L0jv/
API引用:https://api.highcharts.com/highcharts/tooltip.pointFormat