我使用高图时遇到问题,因为我只想要正常数(1,2,3,4以上)而不是双数(1,1,2, 2,3,3更多),如何解决这个问题?
我已在此网站上尝试格式标签 http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting
感谢' S
这是我的截图
这是我的代码
<script>
$(function () {
$('#chart2').highcharts({
chart: {
type: 'column'
},
title: {
text: 'Kunjungan Pasien Dan Dokter / Hari'
},
yAxis: {
min: 0,
labels: {
format: '{value:.y:,.0f}'
},
title: {
text: 'Kunjungan / Hari'
}
},
tooltip: {
headerFormat: '<table>',
pointFormat: '<tr><td style="color:{series.color};padding:0">{series.name}: </td>' +
'<td style="padding:0"><b>{point.y} Kunjungan</b></td></tr>',
footerFormat: '</table>',
shared: true,
useHTML: true,
},
plotOptions: {
column: {
pointPadding: 0.2,
borderWidth: 0
}
},
series: [{
name: 'Kunjugan Pasien',
data: [2]
}, {
name: 'Kunjungan Dokter',
data: [2]
}]
});
});
</script>
帮帮我。谢谢#)
答案 0 :(得分:0)