I've seen these charts referred to as tag clouds, task clouds, and cloud charts, but can anyone recommend a pure JavaScript (no Flash please) library or utility with which one can generate cloud charts? Many thanks.
+4
A:
You could easily do it with your CMS and css
<div class=".cloud">
<a href="#" class="weight-1">Cloud</a>
<a href="#" class="weight-2">Cloud</a>
</div>
css:
.cloud .weight-1 { font-size: 10px; }
.cloud .weight-2 { font-size: 15px; }
Your CMS would generate the weights and apply the appropriate styling.
Daniel A. White
2009-12-14 16:39:14
+3
A:
I would check out timecloud. Uses jQuery, here is the github page:
http://github.com/stef/timecloud
Another good one that uses jQuery, DynaCloud:
Jordan Messina
2009-12-14 16:46:44
That lib is pretty cool! Have you used it?
Upper Stage
2009-12-14 16:53:56
Not personally but I know some people who have
Jordan Messina
2009-12-14 16:56:29