0

嗨,我正在研究 highhchart 并坚持一个听起来很简单但找不到任何答案的观点。

我在定义 highcharts 时将图表标题设置为 null

但在导出时添加图表标题,如

 exporting: {
             filename: '<?php echo $description ; ?>',
             buttons: {
                 exportButton: {
                     menuItems: [{
                         text: 'Export Chart',
                         onclick: function () {
                             this.exportChart({}, {
                                title: {
                                    text: '<?php echo $description  ; ?>',
                                      style: {
                                            width: '450px'
                                        }
                                }
                            });
                         }
                     }, 
                     null,
                     null,
                     null]
                 }
             }
         }

在打印图表时,我无法配置如何添加图表标题和其他参数,就像我在导出时所做的那样。

这是我导出图表的工作小提琴 http://jsfiddle.net/4SwvV/

当图表设置为空时,导出时带有标题的导出

我不知道如何在印刷品中实现这一目标。打印是否允许设置这样的选项来导出图表标题/

4

1 回答 1

1

您可以在导出时设置此选项,而不是 catch menuitemclick

chartOphttp://api.highcharts.com/highcharts#exporting.chartOptions

因此,它看起来像http://jsfiddle.net/4SwvV/

exporting: {
        filename: 'Export chart',
        chartOptions:{
            title:{
                text:'Exported chart'
            }
        },
        buttons: {
            exportButton: {
                menuItems: [{
                    text: 'Export Chart'
                },
                null,
                null,
                null]
            }
        }
    },

编辑:

您可以使用不完美的解决方案http://jsfiddle.net/4SwvV/4/

 title: {
        useHTML: true,
        text: '<div id="title">Example title</div>',
        style: {
            width: '300px'
        }
    },

纽扣:

 onclick: function () {
                        $('#title').hide();
                        chart.print();
                        $('#title').show();
                    }
于 2013-02-27T09:26:32.687 回答