我正在尝试创建一个简单的饼图。但它似乎没有呈现。我正在尝试使用以下链接中的代码。 似乎在tooltip-pointFormat和plotOptions-格式代码中存在一些问题。它是导致问题的粗体标记。 任何人都可以建议我吗?谢谢!
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
color: '#000000',
connectorColor: '#000000',
format: '<b>{point.name}</b>: {point.percentage:.1f} %'
}
}
}