如何在高图中更改标签双号

时间:2015-02-22 20:35:32

标签: javascript jquery html highcharts

我使用高图时遇到问题,因为我只想要正常数(1,2,3,4以上)而不是双数(1,1,2, 2,3,3更多),如何解决这个问题?

我已在此网站上尝试格式标签 http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting

感谢' S

这是我的截图

enter image description here

这是我的代码

<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>

帮帮我。谢谢#)

1 个答案:

答案 0 :(得分:0)

您可以使用yAxis.tickIntervalAPI)并将其设置为1以获取0,1,2的所有数字......

例如,在我们的代码中,您需要:

yAxis: {
    tickInterval: 1
}

请参阅this updated JSFiddle demonstration