Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to control spaces/margin between bars?

I can't seem to find how to control spaces/margin between bars. I am trying to add 10px space between every bar. I could do this with CSS, though, this does not sound like a valid approach.

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

like image 732
Gajus Avatar asked Aug 12 '26 14:08

Gajus


1 Answers

Actually, you can have control over the bar width simply decreasing the number of hours in the day. This can be achieved using:

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

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

like image 197
Gajus Avatar answered Aug 15 '26 05:08

Gajus