我正在使用jQPlot并禁用了我的图表上的网格线(drawGridlines:false)。但是,我想在yaxis = 0处有一行,我也想确保0出现。这很容易吗?
谢谢!
答案 0 :(得分:5)
您可以在canvasOverlay中添加对象:
var options={ //jqplot options
canvasOverlay: {
show: true,
objects: [
{
horizontalLine: {
name: "y=0",
y: 0,
yaxis: "yaxis",
lineWidth: 1,
color: "rgb(0,0,0)",
shadow: false
}
}
]
}
}
不要忘记添加jqplot.canvasOverlay.min.js
插件。