gchart

How can i use any dataset form SQL in GoogleChart?

How can i use any dataset form SQL in GoogleChart? i really like googleChart. But i want to use Gchart with dataset from Sql' query result in C#? ...

How to import a module from a directory on level above the current script

For my Python application, I have the following directories structure: \myapp \myapp\utils\ \myapp\utils\GChartWrapper\ \myapp\model\ \myapp\view\ \myapp\controller\ One of my class in \myapp\view\ must import a class called GChartWrapper. However, I am getting an import error... myview.py from myapp.utils.GChartWrapper import * He...

Is gchart safe to use?

The home page for gchart, a client side charting add-in for Google Web Toolkit (GWT), has a long screed about how the project's only maintainer thinks his Google account has been hacked and because of that he will be "disavowing/abandoning my own project and Google account". Does that mean the project is an orphan? Is somebody taking i...

GChart on GAE wont show

I am using Eclipse with GAE on a MacBook Pro with GChart. My problem is that I cant get any chart to show when I am developing, but when I use regular tools such as Buttons or Labels with GAE they work just fine. The code doesn't give me any errors, so I am assuming that I have the right code: public class TestingTesting implements Ent...

PHP: problem inserting array inside an array

Hi folks, I have a script that is using the google charts API and the gChart wrapper. I have an array that when dumped looks like this: $values = implode(',', array_values($backup)); var_dump($values); string(12) "8526,567,833" I want to use the array like this: $piChart = new gPieChart(); $piChart->addDataSet(array($values)); I ...

PHP: gChartPHP - adding visible values to pie charts

Hi folks, I'm using the gchart php wrapper from http://code.google.com/p/gchartphp/. This is a question for anyone out there using it. Can you visibly display the values that make up slices of a pie chart? <?php $piChart = new gPieChart(); $piChart->setDimensions(650,300); $piChart->addDataSet(array_values($type)); $piChart->setLabel...

Stacked bar using GChart with Java and GWT?

Hello all! Could anyone help me with the code needed to get a stacked bar using gchart with Java under google web toolkit? ...

Stacked Bars with GChart

I'm trying to create a stacked bar using GChart (http://code.google.com/p/clientsidegchart/?redir=1). I can't believe that it won't work with Google's own Chart API =) Thanks! ...

Google Charts PHP wrapper - image mapping on charts

I use the gchartphp wrapper to create various graphs. I'd like to know if it support image maps like gcharts does? Say I have a pie chart showing backup stats (success, failed, missing email). What I want is to be able to click on say, success and then get a list of all successful backups. Is this possible with the gchartsphp wrapper ...

How can i add click handler to x-label element of gwt-visualisation chart

Hi Guys, I am using gwt-visualisation chart But is there any way to add click handler to x-label Thanks ...