我一直在尝试使用zingchart库绘制气泡图。我没有找到任何选项,我们可以使气泡半径值独立于y轴尺度。例如,在谷歌图表中,气泡半径不依赖于y轴尺度(观察在给定的例子中,生育率是个位数,而人口(气泡大小)是百万)。如果我们在zingchart上尝试同样的例子,由于气泡大小考虑y轴比例,图表将被淹没。如何在zingchart中实现这个功能?
我是ZingChart团队的一员。有一个属性可以用来调整气泡半径,它不依赖于"scale-y":{}。下面是一些有用的代码。
{
"type":"bubble",
"plot":{
"max-size":200 */the "max-size": attribute accepts numeric values and will adjust the radius of the bubbles independently from the y axis values/*
},
"scale-y":{
"values":"0:20:5",
},
"series":[
{
"values":[[1,15,4],
[2,4,2],
[5,10,1],
[6,7,3],
[3,6,2],
[7,15,1],
[8,2,4],
[1,7,3],
[2,12,3],
[4,4,4],
[5,1,2],
[6,3,1],
[8,16,2]]
},
{
"values":[[3,5,1],
[2,17,2],
[8,8,3],
[4,6,2],
[7,3,4],
[2,12,1],
[1,4,1],
[6,2,2],
[4,10,3],
[6,14,2],
[2,6,2]]
},
{
"values":[[3,11,4],
[6,7,4],
[8,14,3],
[3,2,3],
[5,5,2],
[7,10,2],
[2,1,1],
[7,4,1],
[6,16,2],
[1,8,3],
[5,14,1]]
}
]
}