我如何随机排列气泡而不会重叠
var Highcharts2 = $('#attBubbleGraph').highcharts({
chart: {
type: 'bubble',
plotBorderWidth: 1,
margin: [1, 1, 1, 1]
},
title: {
text: 'Testing'
},
series: [
{
showInLegend: false,
name: 'Present',
data: [
[0, 0, 50],
[2, 0, 50],
[4, 0, 50],
],
}]
});
在上面的代码中,x,y和半径(值)如下所示
data: [
[0, 0, 50],
[2, 0, 50],
[4, 0, 50],
],
但是我正在寻找半径(值)的气泡图,其半径为x,y,且不重叠