display x-axis and y-axis lines with out the grid lines using flot

前端 未结 5 1681
你的背包
你的背包 2020-12-01 16:58

I am using flot to display bar charts. When I set the tickLength to 0, it hides the vertical and horizontal lines but it also hides the x-axis and y-axis lines. I need the x

5条回答
  •  一向
    一向 (楼主)
    2020-12-01 17:33

    For the case of a (0,0) origin, you can fake the axes by just drawing bottom and left border lines:

    grid: {
        borderColor: 'black',
        borderWidth: {
            top: 0,
            right: 0,
            bottom: 2,
            left: 2
        },
        ...
    }
    

提交回复
热议问题