最终,我正在追寻一个非常小的一维图表:
轴
数据
Planes
我需要在x轴上的特定点绘制三条线,而不是标准网格 例如:
[[40,-1],[40,1]],
[[50,-1],[50,1]],
[[60,-1],[60,1]]
这是我到目前为止所尝试的内容:
d1 = [[48,0],[16,0],[10,0],[40,0],[30,0],[37,0]];
d2 = [[43,0],[60,0],[74,0],[83,0]];
var options = {
points: { show: true, fill: true, radius: 5 },
lines: { show: false, fill: true },
xaxis: { show: false, min:0, max:100, ticks: false, tickColor: 'transparent' },
yaxis: { show: false, min:-1, max:1, ticks: false, tickColor: 'transparent' },
grid: { show:false }
};
var data = [
{ data: d1, points: { color: '#E07571', fillcolor: '#E07571' } },
{ data: d2, points: { color: '#FDEDB2', fillcolor: '#FDEDB2' } }
];
$.plot($('#placeholder'), data, options);
问题:
答案 0 :(得分:6)
这是一个快速模拟复制你的图片:
d1 = [[48,0],[16,0],[10,0],[40,0],[30,0],[37,0]];
d2 = [[43,0],[60,0],[74,0],[83,0]];
var options = {
points: { show: true, radius: 10, lineWidth: 4, fill: false },
lines: { show: false },
xaxis: { show: false },
yaxis: { show: false },
grid: { show:true,
color: "transparent",
markings: [
{ xaxis: { from: 40, to: 40 }, color:"black" },
{ xaxis: { from: 50, to: 50 }, color:"black" },
{ xaxis: { from: 60, to: 60 }, color:"black" }
]
}
};
xCallBack = function (ctx, x, y, radius, shadow) {
ctx.arc(x, y, radius, 0, Math.PI * 2, false);
var text = 'X'
var metrics = ctx.measureText(text);
ctx.font="15px Arial";
ctx.fillStyle = "red";
ctx.fillText(text,x-metrics.width/2,y+4);
}
checkCallBack = function (ctx, x, y, radius, shadow) {
ctx.arc(x, y, radius, 0, Math.PI * 2, false);
var text = '✓'
var metrics = ctx.measureText(text);
ctx.font="15px Arial";
ctx.fillStyle = "green";
ctx.fillText(text,x-metrics.width/2,y+4);
}
var data = [
{ data: d1, color: 'red', points: {symbol: xCallBack } },
{ data: d2, color: 'green', points: {symbol: checkCallBack }}
];
$.plot($('#placeholder'), data, options);
小提琴here。
答案 1 :(得分:4)
你实际上已经非常接近了。
颜色不起作用,因为颜色是系列的属性,而不是series.points。您只需要将数据与数据一起上移一级。 fillColor选项不起作用,因为'c'需要大写。
对于垂直线,请使用标记,如Customizing the Grid:
中所述grid: {
show: true,
color: "transparent",
markings: [
{ xaxis: { from: 20, to: 20 }, color: "#888", lineWidth: 5 }
]
}
要绘制更复杂的点符号,请查看Symbols Plugin。它允许您定义自定义回调以绘制自己的符号。