(function() {

// MAXB.NET LABS

})();

charts, jgcharts, jquery, plugins

jQuery Google Charts

Posted on by Massimiliano Balestrieri | Comments

DEMO SITE.

Basic usage:

    var api = new jGCharts.Api();
    jQuery('<img>')
    .attr('src', api.make({data : [[153, 60, 52], [113, 70, 60], [120, 80, 40]]}))
    .appendTo("#bar1");

Table helper plugin:

    jQuery(".jgtable").jgtable();

Json options:

    jQuery.getJSON(
        "../json/example.json",
        //wait json data
        function(json){
            jQuery("#jgjson").jgtable(json);
        }
    );
This entry was posted in charts, jgcharts, jquery, plugins and tagged , , , , . Bookmark the permalink.

2 Comments

  1. Posted 13 March 2009 at 22:54 | Permalink

    Is there a way to remove the labels from the pie chart rendering?

  2. Posted 14 March 2009 at 10:54 | Permalink

    @jacob

    temporarily…

    http://www.maxb.net/scripts/jgcharts/include/demo/test.html

    (in the next version axis_labels : false)