Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
918 views

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\ ...
1
vote
1answer
234 views

How to label my bar chart with numbers?

I am using gchart and I am trying to use markers to label my bar char with numbers. So that ever bar has a number value on top of it. I tried markers: [$.gchart.marker('number', 'red', -1)] markers: ...
1
vote
1answer
93 views

how do I display a googlechart in ruby?

I was wondering how to display a chart made with gchartrb in ruby. I tried to do it by simply requiring the picture from the URL given but that gives the error "Bad URI". how do I do it? thanks ...
1
vote
5answers
258 views

Client Side Graphing Tool that supports saving of the Graph?

I'm trying to find a graphing tool that runs clients side that will allow me to plot some data and then save the grpah. I have Tried FLOT http://code.google.com/p/flot/ but it does not support saving ...
1
vote
1answer
172 views

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

I am using gwt-visualisation chart But is there any way to add click handler to x-label Thanks
1
vote
1answer
108 views

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 ...
0
votes
1answer
94 views

gchartphp addDataSet() max limit?

I'm trying to create a PHP script that graphs some historical stock data. I have the data in an array and am trying to graph it with gchartphp using this code: require_once("../gchart/gChart.php"); ...
0
votes
0answers
102 views

Google Chart - Concentric Chart

I don't think there is a ruby library that supports Google's concentric pie charts, but with a small hack I can made http://googlecharts.rubyforge.org/ work. Something like Gchart.pie(:data => ...
0
votes
0answers
58 views

GWT : How to make a buffer (FIFO) to hold some 2D array values (coming from server every 200ms) at client side, and then use those values in graph?

i am using event-source rpc pluggings for data pushing from server side after a certain period eg. 200ms, so no client request exists, therefore i need a buffer (FIFO) in the client side because ...
0
votes
3answers
291 views

Need help on Codeigniter gchart help usage

I followed the wiki artichle (http://codeigniter.com/wiki/gchart/revision/5312/) to practice google chart in my CI 2.0. But it doesn't work. controller file: ci\application\helpers\mytest.php ...
0
votes
1answer
379 views

How to code in GWT server side?

In GWT, I will use G chart to present data in the browser, in the gwt server side i will need one thread will generate random data, other threads will represent the data to the client(browser) in a ...
0
votes
2answers
174 views

Stacked bar using GChart with Java and GWT?

Could anyone help me with the code needed to get a stacked bar using gchart with Java under google web toolkit?
0
votes
1answer
266 views

PHP: gChartPHP - adding visible values to pie charts

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? ...
0
votes
2answers
55 views

PHP: problem inserting array inside an array

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); ...
0
votes
1answer
141 views

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 ...
0
votes
2answers
321 views

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 ...
0
votes
1answer
125 views

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#?