情节 - 我如何让我的酒吧更宽?

时间:2012-02-15 11:52:01

标签: javascript jquery flot

如何让条形图中的条形更宽广?我已经尝试了各种各样的事情,例如在X轴上设置刻度数量,但是没有任何东西像我期望的那样工作。

现在,酒吧真的很小。

enter image description here

1 个答案:

答案 0 :(得分:1)

请参阅Flot API

Customizing the data series
===========================

series: {
  lines, points, bars: {
    show: boolean
    lineWidth: number
    fill: boolean or number
    fillColor: null or color/gradient
  }

  points: {
    radius: number
    symbol: "circle" or function
  }

  bars: {
    barWidth: number
    align: "left" or "center"
    horizontal: boolean
  }

所以,你应该能够设置barWidth并且好好去。