[visualization-api] title too large

2012-09-19 Thread Bistaratzea
Hi, I've created a Line Chart and I'd want to know if it's possible to write the tittle in 2 sentences because it's too large. Thanks in advance! -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To view this discussion on the

[visualization-api] Changing Pie Charts to Show Number instead of Percent

2012-09-19 Thread Andy Wessendorf
I want to be able to show the number field of my pie chart rather than the percentage this number represents. I have tried looking into formatters (that worked for my gauges to add a suffix) to no avail. Maybe I am missing something? Example: Table: Red (5), Blue (4), Green (3) Shows -

[visualization-api] Re: need help for downloading my pie chart in CSV

2012-09-19 Thread asgallant
The easiest way to handle this is usually server-side, but if you want to handle it in javascript, I wrote a hack that will do the job: http://jsfiddle.net/asgallant/MqERY/3/. The relevant code is near the bottom (see the section beginning with var runOnce = ...). On Wednesday, September 19,

[visualization-api] Re: title too large

2012-09-19 Thread asgallant
The title automatically wraps when it gets to the width of the chart area. There is no way to force multiple lines or to choose where the title is split. On Wednesday, September 19, 2012 2:56:14 AM UTC-4, Bistaratzea wrote: Hi, I've created a Line Chart and I'd want to know if it's

[visualization-api] Re: Changing Pie Charts to Show Number instead of Percent

2012-09-19 Thread asgallant
Set the pieSliceText option to value. On Wednesday, September 19, 2012 4:01:43 AM UTC-4, Andy Wessendorf wrote: I want to be able to show the number field of my pie chart rather than the percentage this number represents. I have tried looking into formatters (that worked for my gauges to

[visualization-api] Re: GoogleChart TreeMap

2012-09-19 Thread asgallant
You're welcome. On Wednesday, September 19, 2012 8:55:15 AM UTC-4, TUwel wrote: thanks, it works :) -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To view this discussion on the web visit

[visualization-api] number formatting problem using ChartEditor

2012-09-19 Thread Felipe Paez Navarrete
Hello, I have a problem, when I use ChartEditor and want to have a format of thousands in number, does not work. Thanks for the cooperation. This is an example of the function you want to format * var wrapper; function init () { var = new google.visualization.ChartWrapper

[visualization-api] Re: DataTable and SharePoint Lists

2012-09-19 Thread ShpDvl
hi can u share the code? i need to display a sharepoint list as a chart without grouping it? thanks regards, saravanan On Wednesday, August 10, 2011 5:21:11 AM UTC+8, IMTheNachoMan wrote: I've wrote a script that gets a SharePoint list as a Google DataTable JSON that can be used to

[visualization-api] Re: Changing Pie Charts to Show Number instead of Percent

2012-09-19 Thread Felipe Paez Navarrete
hello, documentation in the chart, in customization options is pieSliceText where you can put that data show. El miércoles, 19 de septiembre de 2012 03:01:43 UTC-5, Andy Wessendorf escribió: I want to be able to show the number field of my pie chart rather than the percentage this number

[visualization-api] Re: Using a webfont in charts?

2012-09-19 Thread Philipp Kyeck
{ // ... forceIFrame: false, fontName: 'Droid Sans', // ... } did the trick for me. now i got the Droid Sans inside my PieChart. thanks! -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To view this discussion on the

[visualization-api] Re: number formatting problem using ChartEditor

2012-09-19 Thread asgallant
ChartEditors don't support the full range of axis formatting; they only handle prefixes and suffixes. You can preformat the axis in the ChartWrapper (set options.vAxis.format), but if the user changes the axis formatting, the 1000's separators will be gone. On Wednesday, September 19, 2012

[visualization-api] Re: Line chart with multiple series on multiple axes

2012-09-19 Thread Gizamo
Thank you so much. That got me off to a great start. It is exactly what I was trying to do. But, I still have three hang ups: 1. The metric/imperial conversion is returning a value of 0 for null items. Is there a way to change any value 0 to null? Also, I rounded the conversions to 2 decimals

[visualization-api] Beginner Question - Why won't my chart display in an HTML Webpage?

2012-09-19 Thread Mike
Quick question here. I've been trying to figure it out for about an hour now but haven't gotten anywhere (and getting a bit frustrated since I thought this was going to be the easy part). I finished making my first visualization using Google's API, and I am trying to figure out how to insert

[visualization-api] Re: Beginner Question - Why won't my chart display in an HTML Webpage?

2012-09-19 Thread asgallant
It works just fine for me. Open it in Chrome and look in the developer's console (ctrl+shift+j in windows) and look for any errors. On Wednesday, September 19, 2012 5:11:55 PM UTC-4, Mike wrote: Quick question here. I've been trying to figure it out for about an hour now but haven't gotten

[visualization-api] Re: Beginner Question - Why won't my chart display in an HTML Webpage?

2012-09-19 Thread Mike
Hmmm that's odd. It works for me now too. Hmmm. Well thanks! On Wednesday, September 19, 2012 5:52:23 PM UTC-4, asgallant wrote: It works just fine for me. Open it in Chrome and look in the developer's console (ctrl+shift+j in windows) and look for any errors. On Wednesday, September

[visualization-api] Re: GANT Chart kinda...

2012-09-19 Thread asgallant
Gantt charts are not explicitly supported in the API, but you can fake them with BarCharts. Here's a starting point for you: http://jsfiddle.net/asgallant/uHTE8/. Add more data series to stack different kinds of data on top. On Wednesday, September 19, 2012 6:24:05 PM UTC-4, qboiler wrote:

[visualization-api] The annotated timeline example: When I save the exact HTML code, clicking annotations in graph do not show.

2012-09-19 Thread RuleKinG
I use the example below: http://code.google.com/apis/ajax/playground/?type=visualization#annotated_time_line When i save the html to a file on my deskop, and I open it, it does not have the same behaviour as in the example. The Points A and B do not show in the graph. Same with the other

[visualization-api] How to select a different marker for a line chart?

2012-09-19 Thread gv91745
With Google line charts, I specified 'pointSize' to be 5 and it draws small circles for the data points. Is there a way to have a series use X's or square's or some other simple marker type? Looked all over API docs but can't find the answer Thanks. -- You received this message because

[visualization-api] Re: Marker for each data point in line chart

2012-09-19 Thread gv91745
There's no way to select a square marker, instead of a circle/dot? No X's? Triangles? On Wednesday, May 9, 2012 6:30:15 AM UTC-7, asgallant wrote: What kind of marker do you want? You can set the 'pointSize' option to make data points stand out from the connecting lines, but there isn't

[visualization-api] Re: need help for downloading my pie chart in CSV

2012-09-19 Thread nishh
thanks for your reply.as i am not much aware of this variable var=runoncecan u help me for making a csv file for my code as i am picking values from controller in my piechart. i hope you will help me On Wednesday, September 19, 2012 8:21:35 PM UTC+5:30, asgallant wrote: The easiest