About Chartify
Chartify – A Visualization Plugin for jQuery
Chartify is an open source jQuery plugin for visualization using Google Charts. It makes charts from tables!
Chartify currently supports bar charts (including stacked and grouped bar charts), pie charts, Venn charts and a simple diagram for displaying gender distributions
Why should I use this?
- The approach of parsing actual HTML tables makes the data available in an accessible format to people (and search engines) who can't experience visualizations for various reasons.
- It's easier to use than any alternatives that we have seen. E.g.: $('table').chartify('pie');
Demo
1. Output your data as an HTML table:
<table id="my-table">
<thead>
<tr>
<td></td>
<th>Not Pac-Man</th>
<th>Pac-Man</th>
</tr>
</thead>
<tbody>
<tr>
<th>Amount</th>
<td>1.256</td>
<td>5.027</td>
</tr>
</tbody>
</table>
2. Call chartify on the table.
$('#my-table').chartify('pie', {
pieChartRotation: -1.256/2,
showLegend: false,
colors: ["eeeeee", "ffc000"]
});
3. Et voilà!
| Not Pac-Man | Pac-Man | |
|---|---|---|
| Amount | 1.256 | 5.027 |
Links
License
Chartify is dual licensed under the MIT and GPL licenses.
More information
Chartify was originally developed for use in the presentation of the results of a survey we made on iPad usage in Sweden.
Please feel free to fork the project on GitHub and make your own modifications, and if you think it's something we can use in our version, please don't hesitate to drop us a Pull Request.
Daytona Labs
Daytona Labs is the experimental workshop of the Swedish digital service design agency Daytona. Sometimes the results of the experiments are successful products, such as the most sold mobile game in China (well, back in 2005 anyway ;-) or Sweden's first Web 2.0 service. Sometimes they are are not as successful.
Read more about Daytona in English.
The future of TV
Our design work for the on demand service of Sweden's largest commercial broadcaster TV4 spans several platforms. Read more about TV4 Play.

