I have seen a facebook application in which clicking on a radio button renders a graph.
As you can see below:
I wanted to know whether t
actually, generating this kind of graph is pretty easy - just use two DIVs - one is a 100% width bar, another DIV is in that first DIV making background colored % you require. you can even include text in that. easy, just plain HTML/CSS.
UPDATE:
HTML:
CSS:
.bar { width: 99%; border: 1px solid #000; }
.percentage { background: #000; }