nathfy / auto-table-to-chart

Automatically exported from code.google.com/p/auto-table-to-chart
0 stars 0 forks source link

CHART IS NOT DISPLAYING #19

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
I downloaded example file,attc.css file attc.google chart.js file from your 
website and Jquery.min.js from jquery website and i put all files in same 
folder.
What is the expected output? What do you see instead?
Only the table is displaying when i run example file. Google visualization 
chart is not displaying.
In the setup section of your website i found below script.

"
Finally call the script on page load, on the table element:
$(document).ready(function(){
        $('#AttendancePercentages').attc();
});
"

I cant find this script in the code of your example file. Whre should i paste 
it. Kindly help!
What version of the product are you using? On what browser/OS?
ATTC.3
WINDOWS XP
GOOLGE cHROME Version 28.0.1500.72 m
jQuery v1.7.1
Please provide any additional information below.

Original issue reported on code.google.com by jessilum...@gmail.com on 30 Jul 2013 at 3:21

Attachments:

GoogleCodeExporter commented 9 years ago
you add this to the page to make the chart fire on your table, so in the <head> 
after you added the scripts add:

<script>
$(document).ready(function(){
    $('[data-attc-createChart]').attc();
});
</script>
and the table should be converted

Original comment by nat...@gmail.com on 30 Jul 2013 at 3:34