【问题标题】:Making Highcharts scatter circle shadow制作Highcharts分散圆形阴影
【发布时间】:2014-07-17 00:00:24
【问题描述】:

我正在使用 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 文档,但没有成功。我怎样才能在每个散点圆上做一个投影,如这个模型所示!

【问题讨论】:

    标签: javascript highcharts shadow


    【解决方案1】:

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

    plotOptions: {
        series: {
             shadow: true
        }
    }
    

    【讨论】:

    • 我已经试过了,还是不行。你能看看我的小提琴吗?
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2010-11-16
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多