Tagged Questions
0
votes
0answers
112 views
Display visualization using gviz api on Djago framework (Annotated Tmeline charts basically)
I am using Django Framework for displaying some graphs based on input from user
I want to plot Anootated timeline Chart of Google Visualization API (gviz_api python)
Djago views.py
from ...
1
vote
1answer
220 views
Create dynamic labels for Google Chart using GChartWrapper
I'm using the awesome Google Chart Wrapper to create charts as part of my Django project. Right now I'm creating the chart instance using Python in my views, and then adding the instance to the ...
1
vote
1answer
238 views
Date format using gviz_api.py
I'm using gviz_api (google-visualization-python) to build some line charts.
http://code.google.com/p/google-visualization-python/
I'e edited a line chart example taken from the google ...
0
votes
0answers
90 views
Python Google Chart Wrapper - Dotted plot
I'm using the google chart wrapper for Python.
I want to make a graph with degrees Celsius on the Y-axis and time of day at the X-axis.
So not a line graph but just dots with well separated space ...
0
votes
0answers
73 views
Values misaligned along y-axis using Python Google Chart Wrapper API
When I'm using the extended encoding or a custom size of the graph(say 600*300 instead of the standard 300*150) then the values are misaligned along the y-axis(not big enough in both cases).
What do ...
0
votes
1answer
139 views
google-charts not getting displayed on the server
My code:
<html>
<head>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
...
0
votes
1answer
272 views
to insert data in google visualization bar charts charts using for loop in django
I am currently working on a project in django. In this project I want to show graphical representation of data stored in the sqlite3 database tables. For that I have written some piece of code in ...
1
vote
2answers
255 views
How to pass null to javascript from python using jinja
I was doing it something like this in google app engine:
self.render('hello.html', value=null)
But obviously since python doesn't understand null it thinks it's an undefined variable and gives an ...
17
votes
1answer
620 views
Google Charts y-axis values
I have a set of paired data:
[(x_1,y_1), (x_2,y_2), (x_3, y_3)]
and I want to make an XYChart out of it using the python GChartWrapper library such that that the y-axis values are a transformation ...
2
votes
1answer
577 views
how to use multiple lists as a single data in the Google visualization chart api
I have two python lists
passlist1= [[1, "Saturday"], [6, "Sunday"], [12 ,"Wednesday"], [31, "Monday"], [14, "Monday"], [1, "Tuesday"], [1, "Sunday"]]
failedlist2= [[11, "Saturday"], [26, "Sunday"], ...
0
votes
1answer
319 views
Range for vertical bar chart with google chart-wrapper
I've been trying to figure out how to use google chart-wrapper with my django application but I can't seem to find hardly any documentation on how to use it. After playing around with it for awhile I ...
-4
votes
1answer
361 views
generating chart using python or google charts [closed]
i would like be able to input a dataset and get SMOOTH graph. for example i have the following graph
how would i smooth this out:
1
vote
2answers
386 views
pygooglechart define data encoding
when using chart.add_date([1,2,3,4,5]) it creates the URL with "chd=e:LNYAczgATN5m", it is encoded the data but i want to be of type text as "chd=t:1,2,3,4,5"
What is the function that can do this ?
...
0
votes
1answer
470 views
Google Chart API - Line Chart: Averaging data
I have data that maps across ~4 years on a line chart:
0 72 346 172 193 240 34 24 18 26 25 34 52 104 23 34 29 32 55 46 44 25 36 45 48 60 65 69 66 24 28 39 2 72 74 65 69 44 66 57 49 35 77 49 32 63 47 ...
0
votes
1answer
298 views
Google Chart API: trouble with rendering a XYLine graph
I'm trying to make an XYLine with the Google Chart API via the not-so-well-documented GChartWrapper libraries.
Here's a portion of the code that is supposed to generate the graph:
data = []
...
2
votes
1answer
451 views
Convert python variables into javascript variables
I want to use Google Chart API using javascript. (I don't want to use the python wrapper)
So how do I send data from my python code into the javascript to create graphs?
1
vote
1answer
987 views
Rose diagrams in Google Chart
I searched around for ways to make rose diagrams (circular histograms) in Google Chart. The API has only radar diagrams, so it seems not technically possible (am I correct?). This wind rose example ...