ZingChart库中的气泡图:使气泡大小比例与y轴值无关

时间:2013-06-17 10:12:48

标签: bubble-chart zingchart

我一直在尝试使用zingchart库绘制气泡图。我没有找到任何可以使气泡半径值独立于y轴刻度的选项。例如,在googlecharts中,气泡半径不依赖于y轴刻度(观察到在给定的示例中,生育率是单个数字,其中总体(气泡大小)以百万计)。如果我们在zingchart上尝试相同的例子,图表将被淹没,因为气泡大小考虑了y轴刻度。如何在zingchart中实现这个功能?

1 个答案:

答案 0 :(得分:2)

我在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]]
    }
]
}