如何在 highcharts 饼图中动态居中图表标题位置

How to center chart title position dynamically inside pie chart in highcharts

我正在做一个响应式饼图,它在 it.I 中使用了中心位置的标题,

title: {
            text: "",
            margin: 0,
            y:0,
            x:0,
            align: 'center',
            verticalAlign: 'middle',
        },

但它没有完全居中 chart.Any 建议 appreciated.Thank 你提前。

这是 Link :http://jsfiddle.net/LHSey/128/

我们可以使用 chart.setTitle() 自定义标题的任何属性,如图所示 below.I已添加标题并将 useHTML 属性 设置为 true。

chart: {
            events: {
                    load: function () {
                        this.setTitle({text: 'Title',useHTML:true});
                    } 
            }
    }

更好的是删除标题并使用允许添加自定义文本的渲染器,每次都可以重新定位(当您重绘图表时)。你只需要抓住这个事件。

function addTitle() {

        if (this.title) {
            this.title.destroy();
        }

        var r = this.renderer,
            x = this.series[0].center[0] + this.plotLeft,
            y = this.series[0].center[1] + this.plotTop;
        this.title = r.text('Series 1', 0, 0)
            .css({
            color: '#4572A7',
            fontSize: '16px'
        }).hide()
            .add();

        var bbox = this.title.getBBox();
        this.title.attr({
            x: x - (bbox.width / 2),
            y: y
        }).show();
    }

chart:{
    events: {
                    load: addTitle,
                    redraw: addTitle,
            },
} 

示例:http://jsfiddle.net/LHSey/129/