1

各 PLOT ポイントまたは BUBBLE の横に散布図を自動的に表示できるようにしたいと考えています。これは、それを識別するテキストです。

ここに私が達成しようとしているものの例があります

どんな助けでも大歓迎です!!

4

2 に答える 2

2

各データ ポイントを個別のシリーズとして作成し、dataLabels オプションを活用します。

 $('#container').highcharts({

    chart: {
        type: 'scatter'
    },

    plotOptions: {            
        series: {
            dataLabels: {
                enabled: true,
                format: '{series.name}', // make it show the name
                x: 15, // place it on right side
                y: 10
            },
        }, 
        scatter: {
            marker: {
                radius: 10
            }
        }
    },

    series: [
        {
        name: 'A',
        data: [[Math.random() * 100, Math.random() * 100]]
        },
        {
        name: 'B',
        data: [[Math.random() * 100, Math.random() * 100]]
        },
        {
        name: 'C',
        data: [[Math.random() * 100, Math.random() * 100]]
        },
        {
        name: 'D',
        data: [[Math.random() * 100, Math.random() * 100]]
        },
        {
        name: 'E',
        data: [[Math.random() * 100, Math.random() * 100]]
        },
        {
        name: 'F',
        data: [[Math.random() * 100, Math.random() * 100]]
        },
        {
        name: 'G',
        data: [[Math.random() * 100, Math.random() * 100]]
        }
    ]
});

ここでフィドル。

ここに画像の説明を入力

于 2013-05-14T15:09:12.640 に答える