I am using code to display a tag cloud based on percentage values. The first time a tag is added to my db, it appears large, and then shrinks relative to other tags (the more ti
Why don't you take this:
weight = (((double)tagGroup.Count() / maxTagFrequencyNegative * 100) - 100) * -1
That way you take the largest numbers and reverse them.