0

我想在柱形图中每列的顶部显示值。如何实现这一点。

4

1 回答 1

0

您应该启用数据标签(http://api.highcharts.com/highcharts#plotOptions.column.dataLabels.enabled

示例:http: //jsfiddle.net/uubCY/

plotOptions: {
        series: {
            dataLabels: {
                enabled: true
            }
        }
    },
于 2013-03-29T09:34:19.293 回答