簡単な円グラフを作成しようとしています。しかし、それはレンダリングされていないようです。以下のリンクのコードを試しています。tooltip-pointFormat および plotOptions-format コードに問題があるようです。問題を引き起こしているのは太字のタグです。誰でも私にアドバイスできますか?ありがとう!
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} %'
}
}
}