好的开始我正在使用Jquery-Flot绘制一个径向图我已经找到了一个插件来创建一个蜘蛛图,请参见API:
http://www.jumware.com/Includes/jquery/Flot/Doc/JQuery.Flot.spider.html
现在它可以很好地禁止我不想显示连接点的线条。 通常用:
points: { show: true}, lines: { show: false}
但是当使用蜘蛛插件时,它似乎忽略了这个设置。我在这里做错了什么,或者在使用这个插件时我必须显示线条?
工作示例:
代码:
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
编辑为任意数字似乎对图表没有任何影响。
我怎样才能只显示积分而非积分?
答案 0 :(得分:2)
将connection: { width: 0 }
添加到蜘蛛选项:
spider: {
active: true,
connection: { width: 0 }, // add this line
legs: {
data: ["", "", "", "", ""],
legScaleMax: 1,
legScaleMin: 0.8
},
spiderSize: 0.9
}
Documentation声明该选项应为:connectionWidth: 0
,但这似乎已发生变化,如source for the actual plugin所示:
function drawspiderConnections(ctx,cnt,serie,c,fill) {
var pos,d;
ctx.beginPath();
ctx.lineWidth = serie.spider.connection.width; // this is the line
// etc.
}