各 PLOT ポイントまたは BUBBLE の横に散布図を自動的に表示できるようにしたいと考えています。これは、それを識別するテキストです。
どんな助けでも大歓迎です!!
各 PLOT ポイントまたは BUBBLE の横に散布図を自動的に表示できるようにしたいと考えています。これは、それを識別するテキストです。
どんな助けでも大歓迎です!!
各データ ポイントを個別のシリーズとして作成し、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]]
}
]
});
ここでフィドル。