5

我使用的是 Highcharts 2.3.5。在“导出”对象的“chartOptions”下,我可以在导出时更改一些内容,例如图表的背景颜色,但我无法启用 dataLabels 也无法更改标记大小。

这是一个例子,什么有效,什么无效。在这种情况下,导出时,我想更改背景颜色(有效)并确保出现数据标签(无效):...

    exporting : {
        chartOptions : {
              chart: { backgroundColor: '#ff0000'}, //this works
              plotOptions: {
                    pie : {
                               dataLabels: {enabled: true}  //this one doesn't work
                            }
              }                         
}...

我错过了一些明显的东西吗?j

4

1 回答 1

0
$('#container1').highcharts({
        exporting: {
            chartOptions: { // specific options for the exported image
                plotOptions: {
                    series: {
                        dataLabels: {
                            enabled: true
                        }
                    }
                }
            },
            scale: 3,
            fallbackToExportServer: false
        },      
于 2015-11-30T09:47:41.360 回答