I'm with you, PJ.

I want my bars to be representative of the number, so if the width of the cell is:

********** (100%)

Then results of 50%, 30%, 20% and 10% would look like:

*****
***
**
*


If you want to change the code to behave that way, it is in public_polls.pl in the "Templates" directory.

Find:
Code
 			print qq( style="border: 1px solid black; background-color: $this_color; width: 

$width_percentage%"> ); 
and replace it with:
Code
			print qq( style="border: 1px solid black; background-color: $this_color; width: 

$vote_percentage%"> );
That's it!