How to control spaces / margins between bars?

I can't seem to find how to manage spaces / fields between bars. I am trying to add a 10px space between each bar. I could do this with CSS, but that doesn't seem like a valid approach.

API Documentation: http://people.iola.dk/olau/flot/API.txt

+3
source share
1 answer

In fact, you can control the bandwidth by simply reducing the number of hours per day. This can be achieved with:

barWidth: [number of hours] * 60 * 60 * 1000

Creating [number of hours]anything below 24will create spaces between the tabs.

+1
source

All Articles