2

カスタム レイヤーをグラフ (コメント、作成者など) の上に重ねたいと思います。API を読むと、目的のオブジェクトが既にあるようです:

グラフ領域のどこにでも配置できる HTML ラベル。

サンプル チャートの 1 つでこれを使用しようとしましたが、インタプリタはエラーを発行していませんが、効果はありません (以下を参照)。私は何か間違ったことをしていますか、それともこの種のラベルを別の方法で作成する必要がありますか?

ありがとうございました。

    chart = new Highcharts.Chart({
        chart: {
            renderTo: 'pie-container',
            plotBackgroundColor: null,
            plotBorderWidth: null,
            plotShadow: false
        },
        title: {
            text: 'Browser market shares at a specific website, 2010'
        },
        tooltip: {
            pointFormat: '{series.name}: <b>{point.percentage}%',
            percentageDecimals: 1
        },
        plotOptions: {
            pie: {
                allowPointSelect: true,
                cursor: 'pointer',
                dataLabels: {
                    enabled: true,
                    color: '#FFFFFF',
                    connectorColor: '#FFFFFF',
                    formatter: function() {
                        return '<b>'+ this.point.name +'</b>: '+ this.percentage +' %';
                    }
                }
            }
        },
        series: [{
            type: 'pie',
            name: 'Browser share',
            data: [
                ['Firefox',   45.0],
                ['IE',       26.8],
                {
                    name: 'Chrome',
                    y: 12.8,
                    sliced: true,
                    selected: true
                },
                ['Safari',    8.5],
                ['Opera',     6.2],
                ['Others',   0.7]
            ]
        }],
        labels: [
            {html: "<b>This is a label!</b>", 
            style: {
                left: '100px', 
                top: '100px',
                width: '50px'}}],
      });
   });
});
4

1 に答える 1

3

labelsオブジェクトでなければなりません。
次に、各ラベルを の要素として追加する必要がありitemsます。

labels: {
    items: [{
        html: "<b>This is a label!</b>",
        style: {
            left: '100px',
            top: '100px',
            width: '50px'
        }
    }]
}

デモ

于 2013-02-12T21:25:13.600 に答える