table2chart v1.3

This is a plugin MooTools that generates charts from accessible data tables. So, you can take a simple, valid and accessible data table and it gets automatically converted to a pie chart. Simply add the script to the end of the body and it'll converts all the table with a class called 'toChart'. You can define the size and the colour within the attribute class of the table (like: class="toChart size700x300 color29b34f").



Details

Author
Adrian Statescu
Current version
v1.3
GitHub
thinkphp/table2chart
Downloads
9404
Category
Utilities
Tags
Report
GitHub Issues

Releases


Dependencies

  • core/1.3: *

How to use

First you must to include the JS files in the head of your HTML document.

   #HTML
   <script type="text/javascript" src="mootools.js"></script>
   <script type="text/javascript" src="table2chart.js"></script>

In your HTML source:

BrowserPercent
MSIE20
FireFox100
Camino70
Opera90
Safari90

Add the script to the end of the body:

   #JS 
   <script type="text/javascript">
     new Table2Chart(); 
   </script>

OR wait until dom is ready

  #JS 
  <script type="text/javascript">
  window.addEvent('domready',function(){
     new Table2Chart();   
  });  
  </script>

Dependencies

  MooTools Core 1.3

Discuss

A note on comments here: These comments are moderated. No comments will show up until they are approved. Comments that are not productive (i.e. inflammatory, rude, etc) will not be approved.

Found a bug in this plugin? Please report it this repository's Github Issues.

blog comments powered by Disqus