我正在尝试创建一个简单的饼图。但它似乎没有被渲染。我正在尝试使用以下链接中的代码。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} %'
}
}
}