如何在图表 js 工具提示中显示小数字?
How to display small numbers in chart js tooltip?
我正在使用 chart.js,我的数据非常小,比如这样(0.00000023120098、0.00000887272934、0.00000343234)。问题是,当我将鼠标悬停在图表上时,工具提示仅显示 0。我尝试寻找解决方案,但找不到任何解决方案。
您将需要覆盖默认的标签回调,这样它就不会进行任何格式设置:
var options = {
type: 'line',
data: {
labels: ["Red", "Blue", "Yellow"],
datasets: [{
label: '# of Votes',
data: [0.00000023120098, 0.00000887272934, 0.00000343234],
borderColor: 'pink'
}]
},
options: {
plugins: {
tooltip: {
callbacks: {
label: (ctx) => (`${ctx.dataset.label}: ${ctx.raw}`)
}
}
}
}
}
var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
<canvas id="chartJSContainer" width="600" height="400"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.7.1/chart.js"></script>
</body>
我正在使用 chart.js,我的数据非常小,比如这样(0.00000023120098、0.00000887272934、0.00000343234)。问题是,当我将鼠标悬停在图表上时,工具提示仅显示 0。我尝试寻找解决方案,但找不到任何解决方案。
您将需要覆盖默认的标签回调,这样它就不会进行任何格式设置:
var options = {
type: 'line',
data: {
labels: ["Red", "Blue", "Yellow"],
datasets: [{
label: '# of Votes',
data: [0.00000023120098, 0.00000887272934, 0.00000343234],
borderColor: 'pink'
}]
},
options: {
plugins: {
tooltip: {
callbacks: {
label: (ctx) => (`${ctx.dataset.label}: ${ctx.raw}`)
}
}
}
}
}
var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
<canvas id="chartJSContainer" width="600" height="400"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.7.1/chart.js"></script>
</body>