I want to make a bar rating system for my website and this is what i have actually:
Which doesn't look nice at all :p. I want the height to increase like a Exponential curve gradually. Not too steep at the beginning, which gradually increase afterward.
Using:
height = (Math.ceil( Math.log(i) * 10) / 10 ) + settings.height
where i is the for loop variable from 0 -> 19(number of bars) and settings.height being the base height which is 15. What should i do to correct it?
edit: Like this but upside down