私は非常に単純なスプライン チャートを持っており、各ツールチップに、選択したポイントと前のポイントの値の間の変動をパーセンテージの変動で表示しようとしています。基本的にこれは私が表示したいツールチップ形式です
解決策を探していましたが、思いついたのはこれだけでした。
それが役に立てば幸い。
これは私のチャートオプションです:
GeneralChartOptions = {
chart: {
renderTo: 'dummycontainer',
type: 'spline',
zoomType: 'x',
spacingRight: 20
},
credits: {
enabled: false
},
title: {
text: ''
},
xAxis: {
type: 'datetime',
dateTimeLabelFormats: {
month: '%b \'%y',
year: '%b'
}
},
yAxis: {
title: {
text: ''
},
plotLines: []
},
tooltip: {
xDateFormat: '%m-%Y',
shared: true,
crosshairs: true,
},
exporting: {
enabled: false
},
labels: {
formatter: function() {
return Highcharts.numberFormat(this.value, 2,".",",");
}
},
series: []
}
助けてくれてありがとう、本当に感謝しています。