5

我不想要 jqplot 上的 X 和 Y 轴线。像这样的东西在此处输入图像描述

我应该如何做到这一点。

我尝试了 jqplot 的各种选项,例如 showGrid: false 等...没有任何效果

4

1 回答 1

7

试试这个选项:

axesDefaults: {
    rendererOptions: {
        baselineWidth: 1.5,
        drawBaseline: false
    }
},
grid: {
    drawBorder: false,
    borderWidth:0, 
    shadow:false
},
xaxis: { 
        drawMajorGridlines: false
}
于 2012-10-24T09:33:43.537 回答