1

好的开始我正在使用 Jquery-Flot 绘制径向图我找到了一个插件来创建蜘蛛图请参阅此处的 API:

http://www.jumware.com/Includes/jquery/Flot/Doc/JQuery.Flot.spider.html

现在它工作得很好,我不想显示连接点的线。通常与:

points: { show: true}, lines: { show: false}

但是当使用蜘蛛插件时,它似乎忽略了这个设置。我在这里做错了什么,还是在使用这个插件时我必须显示线条?


工作示例:

http://jsfiddle.net/WAscC/2/


代码:

function EveryOneSec() {

    var d1 = [[0, 10], [1, 20], [2, 80], [3, 70], [4, 60]];
    var d2 = [[0, 30], [1, 25], [2, 50], [3, 60], [4, 95]];
    var d3 = [[0, 50], [1, 40], [2, 60], [3, 95], [4, 30]];

    var options = {
        series: {
            spider: {
                active: true,
                legs: {
                    data: ["", "", "", "", ""],
                    legScaleMax: 1,
                    legScaleMin: 0.8
                }, spiderSize: 0.9
            }
        }, grid: {
            hoverable: false,
            clickable: false,
            tickColor: "rgba(0,0,0,0.2)",
            mode: "radar"
        }
    };


    data = [{
        label: "",
        data: d1,
        spider: {
            show: true,
            lineWidth: 0
        }
    }, {
        label: "",
        data: d2,
        spider: {
            show: true,
            lineWidth: 0
        }
    }, {
        label: "",
        data: d3,
        spider: {
            show: true,
            lineWidth: 0
        },
        points: { show: true},lines: { show: false }
    }];

    $.plot($("#RadialPlot"), data, options);
}
EveryOneSec();

更新一

编辑lineWidth: 0, connectionWidth: 0任何数字似乎对图表完全没有影响。


如何只显示点而不显示线?

4

1 回答 1

2

添加connection: { width: 0 }到蜘蛛选项:

spider: {
   active: true,
   connection: { width: 0 }, // add this line
   legs: {
       data: ["", "", "", "", ""],
       legScaleMax: 1,
       legScaleMin: 0.8
   },
   spiderSize: 0.9
}

文档指出选项应该是: connectionWidth: 0,但这似乎已经改变,从实际插件的源代码中可以看出:

function drawspiderConnections(ctx,cnt,serie,c,fill) {
    var pos,d;
    ctx.beginPath();
    ctx.lineWidth = serie.spider.connection.width; // this is the line

    // etc.

}
于 2010-07-16T06:33:16.477 回答