从jqplot中删除x和y轴线

时间:2012-10-15 21:09:01

标签: graph jqplot bar-chart

我不想要jqplot上的X和Y轴线。像这样enter image description here

我应该如何实现这一目标。

我尝试了jqplot的各种选项,比如showGrid:false等......没什么可行的

1 个答案:

答案 0 :(得分:7)

尝试以下选项:

axesDefaults: {
    rendererOptions: {
        baselineWidth: 1.5,
        drawBaseline: false
    }
},
grid: {
    drawBorder: false,
    borderWidth:0, 
    shadow:false
},
xaxis: { 
        drawMajorGridlines: false
}