使Highcharts散布圆形阴影

时间:2014-05-27 22:47:07

标签: javascript highcharts shadow

我正在使用highcharts(link)来显示一些数据。一切看起来都很好,除了我无法弄清楚如何在每个散射圆数据上制作阴影。我为此设置了here

我也试过这个:

series: (function() {
    var seriesArray = new Array();
var bubbleColor = ['#5f97ba', '#c7edc0', '#fc9026'];
for(var n=0; n<inputData.length; n++) {
    seriesArray.push({
         shadow: true, // This is not working
     marker: {
         symbol: 'circle',
         radius: 8
    },
    name: '',
    color: bubbleColor[n],
    pointInterval: 24 * 3600 * 1000,
    data: [] // I have some data here
    return a;
        })()

我检查了他们的api文件但没有成功。如何在每个散点图上制作投影,如此模型中所示!this mockup

1 个答案:

答案 0 :(得分:0)

http://api.highcharts.com/highcharts#plotOptions.bubble.shadow包含您要查找的信息:

plotOptions: {
    series: {
         shadow: true
    }
}