I wonder if there exist any library (jquery or css + php) to show the chart of the user space left.
Something like:
You are using already 35% out of 100% of slots.
And it should be done with a chart, but I don’t know if there exist such library for system like this.
Either it is me missing something in your question or you can use any charting library you want, e.g.
So you’re basically looking for a progressbar. You can achieve this quite easily using HTML and CSS, no need for a charting library, i.e.
The outer
<span />will be 200px, so set the width of the inner span dynamicall (using php or JS) topercentage * 200px. (You can use whatever value you feel like instead of 200px.)Tada, now fiddle a bit with the CSS and you’ll have what you’ve painted.