円グラフの中央に、特定のフォント、フォントサイズ、フォントカラーを持つテキストを追加します。どのようにハイチャートを使用して、以下のコードのために行うことが可能ですか?円グラフの中心にテキストを追加するハイチャート
私は他の投稿を使ってこれを解決するためにかなりの方法を試しましたが、この質問に完全に答えるようなものはなく、実際には動作します。あなたの答えのすべてがHighCharts文書以内に答えられるように思わ
$(function() {
// Create the chart
Highcharts.setOptions({
colors: ['#26d248', '#323232']
});
chart = new Highcharts.Chart({
chart: {
renderTo: 'summoner-pie-container',
type: 'pie',
backgroundColor:'transparent'
}, plotOptions: {
series: {
marker: {
states: {
hover: {
enabled: false
}
}
}
},
pie: {
borderWidth: 0
}
},
title: {
text: '',
style: {
display: 'none'
}
}, credits: {
enabled: false
}, exporting: {
buttons: {
contextButton: {
enabled: false
}
}
},
tooltip: {
formatter: function() {
return '<b>'+ this.point.name +'</b>: '+ this.y;
}
},
series: [{
data: [["Damage Dealt",34000],["Team Damage Dealt",86423]],
size: '60px',
innerSize: '70%',
dataLabels: {
enabled: false
}
}]
});
});