[visualization-api] Gantt Chart - 0 Day Duration

2020-10-29 Thread Matt
I love the simplicity of the gantt chart offered through this API. I haven't found another charting API that offers the same minimalistic approach. My issue is with tasks that start and end on the same day. What can be done to have a task start and end on the same day and visualize this on the

Re: [visualization-api] Limit on number of charts on one page?

2020-07-15 Thread Matt W
problem on your server side, but there is no evidence > of what that might be on the browser side. > > On Tue, Jul 14, 2020 at 4:47 AM Matt W wrote: > >> Hi, >> >> I’m noticing that I can only get 10 charts on my page at once before the >> whole page tur

[visualization-api] Limit on number of charts on one page?

2020-07-14 Thread Matt W
Hi, I’m noticing that I can only get 10 charts on my page at once before the whole page turns white and doesn’t load (with no error logs) Here is an example of a working page, with 10 charts Here is an example of more (with

[visualization-api] Charts not appearing on webpage

2019-05-10 Thread Matt Marshel
I have multiple pie charts and scatter plots on a webpage, but when the page initially loads, sometimes some of the charts don't appear, sometimes they all appear, and sometimes none of them appear. I have to reload the page over and over again to get all of my charts to appear. Does anyone kno

[visualization-api] How to make a table with Google Sheets data using Google Charts API

2019-04-18 Thread Matt Marshel
Hello, I'm having trouble understanding how to connect my google sheets data to the Google Charts API to make a TABLE. The only example that Google shows of connecting data to make a table is in the miscellaneous examples section and I found it to be very confusing, so I'd like more explanation

[visualization-api] Calendar Chart - Key - Round to two decimal places

2018-04-03 Thread Matt Gelfman
I am attempting to round the key value to two decimal places. No matter what I do, I cannot get it to round. Everything else about the chart works perfectly but because the input values are rounded to two decimal places, the key seems to round to many place values. Is there any way to solve t

[visualization-api] Broken link

2017-10-10 Thread Matt
Hi, Not sure who to notify about a broken link. On this page: https://developers.google.com/chart/interactive/docs/reference, there is a link to: https://www.google.com/uds/modules/gviz/gviz-api.js In that file, it says: For the most up to date API reference please visit: * {@link http://

[visualization-api] Bar chart top axes and bottom axes identical

2017-09-15 Thread Matt Bradley-Roberts
I'm looking to get the hAxis information I currently have to display both on the top and bottom of a bar char (as it could be a large chart!) The chart currently looks like this (the data is fake by the way! The labels on the side have been 'redacted'):

[visualization-api] Re: Datetime format questions

2017-09-08 Thread Matt
][0]`; } // Some raw data (not necessarily accurate) var data = new google.visualization.DataTable(); data.addColumn('date', 'Week'); data.addColumn('number', 'Planned Dollars'); data.addRows(dateArray); On Friday, Septem

[visualization-api] Datetime format questions

2017-09-08 Thread Matt
Why does the format below not accept dates in this format: [["Date(2017, 09, 10)", 7116.0],... var data = new google.visualization.DataTable(); data.addColumn('date', 'Time of Day'); data.addColumn('number', 'Rating'); data.addRows([ [new Date(2015, 0, 1), 5],

Re: [visualization-api] visibleInLegend: false

2017-08-23 Thread Matt
works, depending on how you use it. See this example: > https://jsfiddle.net/dlaliberte/bet8cafo/ > > Note that setting the color to 'none' works better than 'white' if you > want it to not be visible. > > On Wed, Aug 23, 2017 at 10:39 AM, Matt > >

[visualization-api] visibleInLegend: false

2017-08-23 Thread Matt
Defining this option for a series has suddenly stopped working. Any ideas? series: {3: {visibleInLegend: false, color: 'white'}}, -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving ema

Re: [visualization-api] Sorting by DataSource Values?

2017-06-20 Thread Matt
Could you point me in the right direction to achieve that dynamically? I haven't been able to find any resources. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, sen

Re: [visualization-api] Sorting by DataSource Values?

2017-06-20 Thread Matt
Daniel, Thanks for the quick response. I'm loving google charts - they've allowed me to create some really cool stuff. My "clients" will be dynamic, so I can't define those. You're suggesting something like I have below. Is it possible to have each client in the legend? function drawStacked(

[visualization-api] Sorting by DataSource Values?

2017-06-20 Thread Matt
Is it possible to bring in a datasource on a stacked column graph and use one column in the datasource to stack by? If my data looks like below, I would like each stacked column to be a Client. Is this possible? [["2017/06/25", "Client A", 805.0],["2017/06/25", "Client B", 805.0],..] -- You

Re: [visualization-api] Need some help with visualising data from MySQL database

2017-06-14 Thread Matt Kiteley
ld I still be able to set the axes of the graph to be temperature (wherever this may fall in the dataset) vs time? Do appreciate your help! Thanks, Matt On 15 June 2017 at 00:31, 'Daniel LaLiberte' via Google Visualization API < google-visualization-api@googlegroups.com> wrote: &g

Re: [visualization-api] Need some help with visualising data from MySQL database

2017-06-14 Thread Matt Kiteley
x27;23:20:58',,,25,],['2017-06-14','23:21:28'18],['2017-06-14','23:21:59',,,25,],['2017-06-14','23:22:30'18],['2017-06-14','23:23:01',,,25,],['2017-06-14','23:23:32'18],['2017-06-14&#

[visualization-api] Passing JSON data into a Google Chart

2017-05-31 Thread Matt
I'm having trouble passing JSON data into a google chart. I'm using Django for Python. My template looks like this: http://i.imgur.com/QH3dSsR.png The data I'm passing looks like this: http://i.imgur.com/shFRahJ.png Could someone tell me where I'm going wrong? -- You received this message be

[visualization-api] Need some help with visualising data from MySQL database

2017-05-31 Thread Matt K90
6], [14, 4.2, 6.2, 3.4] This might just be down to the way in which I need to group or order the data in my SQL SELECT statement. But I can't seem to figure it out!! Is there a means by which I can group/order/add the data in the DataTable object to achieve what I need to do/see?

[visualization-api] Zero-centred x-axis on head-to-head style bar chart

2017-03-28 Thread Matt Bradley-Roberts
Looking for some help please. I've created a head-to-head style bar chart (see below) and I want the zero (x-axis) to always be centred, even if the values are heavily skewed in the positive or negative (as below the positive value is nearly double the negative).

[visualization-api] Can you make a Bar Chart Background Transparent???!!!

2016-12-02 Thread Matt
e "no color." I want to overlay this chart on an image which is why I want the background to be transparent. Thanks, Matt -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop rece

Re: [visualization-api] Re-positioning the legend, more than just Position value (top, bottom, none)

2016-05-10 Thread Matt Long
Hi Daniel, Yeah I have, it was hidden by the chart. Your documentation just showed the "in" value, which doesn't push any data away and works perfectly for me. Thanks again for the great help! :) On Tuesday, May 10, 2016 at 11:45:12 PM UTC+10, Daniel LaLiberte wrote: > >

[visualization-api] Re-positioning the legend, more than just Position value (top, bottom, none)

2016-05-09 Thread Matt Long
Hi again... I have tried searching this and just haven't had any luck. I have a Legend on the top of my Google Scatter Chart, but the chart is 100% height (because it's an overlay for an image underneath it). Adding a Legend to the top pushes the chart down, which misses some of the lower poin

Re: [visualization-api] Dual-Y chart with multiple series

2016-05-09 Thread Matt Long
Hi Daniel, Thanks a lot for the quick answer! Could you clarify what you mean by internal? Would this just be role: "internal" ? Can my NumberFilter still apply on this column? And would I need to reposition the columns, or will the current setup have them in the same series? (Once I setup th

[visualization-api] Dual-Y chart with multiple series

2016-05-09 Thread Matt Long
Hi, I need help with a chart I'm attempting to create. The idea is that each user will have their own series (so they show up on the legend), and that user has an x and a y (scatter chart), but also Time value and then their tooltip, and style column. So this works for one series: X, Y, Time,

Re: [visualization-api] Incorrect chart rendering with RangeFilter change, attribute d: Expected number, "MNaN,369.5CNaN,36…".

2016-05-07 Thread Matt Long
solved. Thanks! Matt On Sunday, May 8, 2016 at 12:38:22 PM UTC+10, Daniel LaLiberte wrote: > > Matt, > > I can't tell from your images what might be happening, although the first > one suggests that your data values are not in order. The chart does not > change the order o

[visualization-api] Incorrect chart rendering with RangeFilter change, attribute d: Expected number, "MNaN,369.5CNaN,36…".

2016-05-06 Thread Matt Long
Hi everyone, I have a Google Chart with a RangeFilter applied. Sometimes when I change this value, the chart becomes distorted. I've attached 3 files of the error, and 1 file of when the graph is fine. The graph can sometimes be fine for any percentage, and then when you move it up/down again,

Re: [visualization-api] Update to v45 apparently didn't take place

2016-05-05 Thread Matt DeLand
y or tomorrow. We can > switch 'current' to be v45 early next week. > > On Thu, May 5, 2016 at 1:56 PM, Matt DeLand wrote: > >> Is there an ETA on the update? >> Also curious why the update doesn't go to the new server if that's the >> one we should

Re: [visualization-api] Update to v45 apparently didn't take place

2016-05-05 Thread Matt DeLand
Is there an ETA on the update? Also curious why the update doesn't go to the new server if that's the one we should be using (trying to move our code over now)`. Thanks! On Tuesday, May 3, 2016 at 10:14:00 AM UTC-7, Daniel LaLiberte wrote: > > The v45 update is only for the old jsapi loader,

[visualization-api] Which chart should I use for this?

2016-03-10 Thread Matt MatthewsVolvoSite
It isn't obvious to me which type of chart to use. Thanks! -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-visualization-api+unsubscr...@googl

[visualization-api] Motionchart - Bubble - Hang Time

2015-03-24 Thread Matt Bolt
Is there a way to adjust the hang-on time of a bubble before it drops off the graph? I have data that is not collected consistently and the bubbles hang around too long at the moment. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" grou

[visualization-api] Bar chart documentation page needs update to load API version 1.1

2014-12-11 Thread Matt Hessinger
The current page is loading version 1. This is causing issues with the new material charts (see the dual x topic - no chart re

Re: [visualization-api] V38 Release Candidate breaks auto-text coloring of annotations on bar and column charts

2014-03-06 Thread Matt Honeycutt
9:41 AM, Sergey Grabkovsky wrote: > This looks fixed to me in 1.1. Here is a jsfiddle demonstrating it: > http://jsfiddle.net/RbjZH/ > > - Sergey > > > On Thu, Mar 6, 2014 at 7:48 AM, Matt Honeycutt wrote: > >> This bug still seems to be in V1.1. Is it still on t

Re: [visualization-api] V38 Release Candidate breaks auto-text coloring of annotations on bar and column charts

2014-03-06 Thread Matt Honeycutt
This bug still seems to be in V1.1. Is it still on track to get fixed before V38 becomes final? On Tuesday, March 4, 2014 10:01:37 AM UTC-6, Matt Honeycutt wrote: > > Awesome! Well, awesome that it's being fixed so quickly. :) > > > On Tue, Mar 4, 2014 at 9:34 AM, Ser

Re: [visualization-api] V38 Release Candidate breaks auto-text coloring of annotations on bar and column charts

2014-03-04 Thread Matt Honeycutt
. > > - Sergey > > > On Tue, Mar 4, 2014 at 9:27 AM, Matt Honeycutt wrote: > >> Prior to the RC update on February 27th, our charts were rendering like >> this: >> >> >> <https://lh3.googleusercontent.com/-A2kzYP8mJIo/UxXiQgFngvI/Ahg/mzdt8KLd

[visualization-api] V38 Release Candidate breaks auto-text coloring of annotations on bar and column charts

2014-03-04 Thread Matt Honeycutt
Prior to the RC update on February 27th, our charts were rendering like this: Notice how the annotation text color changes to match the color of the bar, except when the annotation would overlay

Re: [visualization-api] Re: Using Spreadsheet Data source for Timeline charts

2013-11-26 Thread Matt Lightbourn
.draw(view); > } > > 6) some of your rows are missing dates. You need to either add dates to > those rows or put restrictions on the query to remove rows where the dates > are null. You can restrict to non-null dates like this: > > query.setQuery('SELECT B,C,D,E WHERE

[visualization-api] Re: Using Spreadsheet Data source for Timeline charts

2013-11-26 Thread Matt Lightbourn
Here's my latest version of the script - it just doesn't get any better - it still doesn't do anything at all :( Google.setOnLoadCallback(drawchart); function drawChart() { // Set Data Source var query = new google.visualization.Query(‘[visualization-api] Re: Using Spreadsheet Data source for Timeline charts
// Draw Chart var data = response.getDataTable(); var container = document.getElementById(‘schedule’); var chart = new google.visualization.Timeline(container)); chart.draw(data); } < /script> On Tuesday, 26 November 2013 17:26:25 UTC+13, Matt Lightbourn wrote: >

[visualization-api] Re: Using Spreadsheet Data source for Timeline charts

in the browser On Wednesday, 27 November 2013 09:34:35 UTC+13, asgallant wrote: > > Where did you see that? > > On Tuesday, November 26, 2013 3:12:56 PM UTC-5, Matt Lightbourn wrote: >> >> Thanks for your reply, I copied and pasted the script contained in your >>

[visualization-api] Re: Using Spreadsheet Data source for Timeline charts

var data = response.getDataTable(); var container = document.getElementById(‘schedule’); var chart = new google.visualization.Timeline(container)); chart.draw(data); } UNQUOTE Any Ideas? Thanks Matt On Wednesday, 27 November 2013 09:34:35 UTC+13, asgallant wrote: > > Where did you see that? > > On Tuesday,

[visualization-api] Re: Using Spreadsheet Data source for Timeline charts

Thanks for your reply, I copied and pasted the script contained in your reply and it resulted in the below message. I will work through and work out what happened :) Thanks, Matt function drawChart() { var container = document.getElementById('example3.1'); var c

[visualization-api] Using Spreadsheet Data source for Timeline charts

Hi, I have recently got into the script to create a timeline and obviously need to link this up to a data source. So I cobbled two scripts together which I believe would work and, although loading the html file doesn't error, it just doesn't do anything, please help. I want to do a Timeline wh

[visualization-api] Re: Google visualization retrieving data from remote sources not working in FireFox. (Error in query: Request timed out)

Please try http://qsl.net/lu5dx/dxo/ I leave that version of the site up and running till tomorrow. Thanks.much. Martt El domingo, 13 de octubre de 2013 11:39:57 UTC-3, asgallant escribió: > > I get a 404 error visiting that page. > > On Sunday, October 13, 2013 2:07:30 AM UTC-4

[visualization-api] Re: Google visualization retrieving data from remote sources not working in FireFox. (Error in query: Request timed out)

using an older version of > Firefox, does upgrading fix the problem? > > On Saturday, October 12, 2013 4:07:28 PM UTC-4, Matt wrote: >> >> Hi I will post my js code as an example, but be aware that the examples >> related to Data Sources in the Google Visualization playgr

[visualization-api] Re: Google visualization retrieving data from remote sources not working in FireFox. (Error in query: Request timed out)

What > version and OS are you using? If you are using an older version of > Firefox, does upgrading fix the problem? > > On Saturday, October 12, 2013 4:07:28 PM UTC-4, Matt wrote: >> >> Hi I will post my js code as an example, but be aware that the examples

[visualization-api] Google visualization retrieving data from remote sources not working in FireFox. (Error in query: Request timed out)

://stackoverflow.com/questions/3719866/google-visualization-piechart-linechart-jquery-ajax-firefox-issue Please help. Regards. Matt // Load the Visualization API and the required packages in my case corechart and controls. google.load('visualization', '1.0', {p

[visualization-api] Re: Create page allowing user input of values, which then displays calculated results and a (very) simple scatter chart

I was wondering if you would be able to share what you ended up using for this. I am looking to do something similar. Thanks! On Tuesday, August 6, 2013 5:52:01 AM UTC-5, Andrew Lindsay wrote: > > I need to qualify that I am not a coder, but I am technical enough that I > can follow instructions

[visualization-api] Most recent date and data query

I have only some basic SQL skills and am trying to complete this in Google Sheets using the query function. Is it possible? I have a form that my students will submit daily, that includes the following information: A - Timestamp B - Name C - Title of book read for homework Since the students

[visualization-api] Re: Google annotated timeline

source: weird! On Thursday, May 23, 2013 7:59:42 PM UTC-4, asgallant wrote: > > Open the page again and see if the source code is rendering; if it is, > post the javascript here. > > On Thursday, May 23, 2013 7:34:29 PM UTC-4, matt wrote: >> >> i switched to

[visualization-api] Re: Google annotated timeline

tore your data this way? It may be > easier to work with if you switch to using arrays: > > $years = array(1991, 1992, 1993, 1994); > $graphs = array(20, 30, 40, 50); > > which allows you to reference the elements easier: > > echo "[new Date(" . $years[$i] .

[visualization-api] Re: Google annotated timeline

chart.draw(data, {displayAnnotations: true}); } On Wednesday, 22 May 2013 19:33:04 UTC-4, asgallant wrote: > > That's a PHP error. It is saying you don't have a variable "value_y6" in > your script. > > On Wednesday, May 22, 2013 2:

[visualization-api] Re: Google annotated timeline

e: > > The syntax looks a little odd to me, what does that output? Open the page > in a browser, view the source, and paste the javascript here. > > On Wednesday, May 22, 2013 11:43:39 AM UTC-4, matt wrote: >> >> asgallant, >> >> Thanks. I did the following

[visualization-api] Re: Google annotated timeline

te($y1, 1, 1), $value_y1],[new Date($y2, 1, 1), $value_y2], etc */ } </> ]); var chart = new google.visualization.Annotated TimeLine(document.getElementBy Id('chart_div1')); chart.draw(data, {displayAnnotations: true}); } This did not work. I got undefined varia

[visualization-api] Google annotated timeline

I want to use Google Annotated Time Line to generate a graph using values generated from a PHP script, so far I have: google.load('visualization', '1', {'packages':['annotatedtimeline']}); google.setOnLoadCallback(drawChart); function drawChart() { var data = new google.visualizatio

Re: [visualization-api] Creating a dashboard that uses Spreadsheet as Database

Hi Joel. Did you find any explanation on how to create a google dashboard using data stored in a google spreadsheet? I've been looking for such example for a long time now and I don't seem to find anything like that. All articles and docs refer to using a local table. Please advise. Thank you so

[visualization-api] Re: multiple labels in X axis in visualization column chart

Thank you. I will try that... Matt On Friday, November 16, 2012 4:47:30 PM UTC-8, asgallant wrote: > > You will have to use a DataView to merge those two columns into one: > > var view = new google.visualization.DataView(data); > view.setColumns([{ > type: 'stri

[visualization-api] Re: multiple labels in X axis in visualization column chart

Related question... is it possible to display two string labels on a column chart? In the example below, each column label and associated tooltip is labeled as "Smith" which is not useful. It would be great to show both the first name and last name; not just the last name. data.addColumn('strin

[visualization-api] Re: Dashboard Memory Leak

To be more specific on how to recreate: If you go to this link: https://code.google.com/apis/ajax/playground/?type=visualization#chartrangefilter_control Then at the very bottom of the javascript place the following code after the line "dashboard.draw(data);" you can recreate. dashboard.dra

[visualization-api] Re: Dashboard Memory Leak

ization.events.removeAllListeners(dashboard); setTimeout(function () {drawChart(dashboard, data);}, 500); } ​ On Friday, September 14, 2012 4:01:59 PM UTC-4, matt wrote: > > Hi Everyone, > > If I redraw a dashboard, over time a memory leak occurs. You can try this > yourself by simply cre

[visualization-api] Re: Refreshing Data Every Second

I believe there is a memory leak in dashboard. See my post here: https://groups.google.com/forum/#!topic/google-visualization-api/9vWn9OtJxno Are you using dashboard to draw or an individual chart? On Thursday, September 13, 2012 2:44:20 PM UTC-4, Peppi wrote: > > Hi, > > I'm using the Visu

[visualization-api] Dashboard Memory Leak

Hi Everyone, If I redraw a dashboard, over time a memory leak occurs. You can try this yourself by simply creating a recursive setTimeout and calling dashboard.draw(); When you open up chrome's timeline view you'll see that the "event listeners" continually rise among other problems (like chr

[visualization-api] Google Charts on Android

Any workarounds for getting Google Charts to display on Android 2.2 and above? Might switch to Flot for time being. 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 web visit https:

[visualization-api] Visualizing and Controling Aggregate data

Hi! I am new to the whole Google Visualization API. I have some log data, where each row represents a logged even associated with a timestamp. I would like to draw a simple instances vs time line graph, i.e. how many events happened on this date, etc. I have my data retrieved and stored in a standa

Re: [visualization-api] Re: What is Google's internal mapping of countries to sub-region codes?

And, EZChart; In addition to the Bangladesh ambiguity, Serbia is listed with regions RS-SR and RS-VO. I couldn't find evidence that RS-SR is a valid Serbian region? Thanks again -- Matt On Saturday, April 21, 2012 6:22:55 AM UTC-7, Matt Nuttall wrote: > > Hi EZChart; > > I&

Re: [visualization-api] Re: What is Google's internal mapping of countries to sub-region codes?

i/ISO_3166-2:BD Because my database maps cities to regions, I need to make sure I understand what ISO regions you are using. Thanks -- Matt On Sunday, April 8, 2012 3:29:54 AM UTC-7, EZChart wrote: > > The baltic countries are supposed to be getting their province maps in the > next

[visualization-api] Re: What is Google's internal mapping of countries to sub-region codes?

Hi EzChart; That is exactly what I needed! Many, many thanks -- Matt On Wednesday, April 4, 2012 11:24:24 PM UTC-7, EZChart wrote: > > Hi Matt, > What we have is a list of provinces we support per country (attached as a > csv). We don't know the mapping between different level

[visualization-api] Re: What is Google's internal mapping of countries to sub-region codes?

upport for each of your supported countries? I've created this awesome mapping engine courtesy of you guys, but now I need to make it function with my database a little better. Many thanks -- Matt On Wednesday, February 15, 2012 7:35:23 AM UTC-8, RainMan wrote: > > That is what

[visualization-api] Geochart tooltip display of country/region name when no data available

ion name even when there is no data to display for that region. Thanks folks -- Matt -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-visualiza

Re: [visualization-api] GeoMap to display Taiwan / China region confused

Ah, ChartAlot -- I had a typo in one of my database files: Central Asia is in great shape and I apologize! Matt -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To view this discussion on the web visit https://groups.go

Re: [visualization-api] GeoMap to display Taiwan / China region confused

Hi ChartALot; Have you guys fixed this one yet? I've just noticed that TJ (Tajikistan) is displaying as Taiwan in Central Asia. Yikes! Thanks -- Matt -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To view this di

Re: [visualization-api] Re: What is Google's internal mapping of countries to sub-region codes?

Hi EZChart Thanks -- that helps! I'd left out a few, it seems. Only thing I noticed is "IM" is listed twice in your 154 list. Next, do you guys provide access to an ISO-3166-2 region code to city mapping database? This would complete my database soo nicely. Thanks again -

[visualization-api] Re: What is Google's internal mapping of countries to sub-region codes?

I may just be talking to myself on this forum, but I noticed the Caribbean really has been implemented on Google Charts. So, here is a set of array variables with the Caribbean 029 regions separated from Central America. Hopefully somebody will someday find this mapping helpful: arr145 = ["AE

[visualization-api] Re: What is Google's internal mapping of countries to sub-region codes?

t assumptions in my development of these regional country mappings. Thanks for the great API -- Matt arr145 = ["AE","AM","AZ","BH","CY","GE","IL","IQ","JO","KW","LB","OM","QA&qu

[visualization-api] What is Google's internal mapping of countries to sub-region codes?

d be appropriate for displaying a map based upon a click anywhere on the Asian continent. At the very least, if Google published their mappings of the subregions, I could readily figure them out myself. Thanks! Matt -- You received this message because you are subscribed to the Google Groups &

Re: [visualization-api] Geochart capturing clientx and clienty after click event

Yeah, you're right. I'm getting nowhere. I give up! -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-visualization-api/-/hTnHSL5kx-wJ. To post to this gr

Re: [visualization-api] Geochart capturing clientx and clienty after click event

Google visualization DOM hoping to stumble upon some way of accessing clientX and clientY from the preceding onclick event. If you come up with any more ideas, I'm all ears! Cheers -- Matt -- You received this message because you are subscribed to the Google Groups "Google Vis

Re: [visualization-api] Geochart capturing clientx and clienty after click even

nt to place a tiny amount of text at the exact location. Any of the Google Visualization API programmers have a comment? I'd sure be a happy programmer if this data can be exposed somehow. Thanks again -- Matt -- You received this message because you are subscribed to the Google Gro

[visualization-api] Geochart capturing clientx and clienty after click even

d on the map click. Then, I want to capture the exact location of the region where the click happened so that I could then overlay some text at exactly where the click occurred. Is it possible to get the coordinates after the event? Is it possible to write text over the map using the coordinates?

[visualization-api] Re: Scatter Charts with Missing Points and Multiple Columns

Ahh yes indeed that does work for now, hopefully that remains the case. Thanks for the help On Nov 3, 11:48 am, asgallant wrote: > I don't think it's documented, so you may not be able to count on it > long-term, but you can set the 'interpolateNulls' option to true, which > will allow your line

[visualization-api] Scatter Charts with Missing Points and Multiple Columns

I am trying to build a scatter charts, with lines drawn between points, for two sets of values over time. The problem is the values don't come through at the same time necessarily. One second both values may exist, but another second only one value will exist. This causes disconnects in the lines b

[visualization-api] Re: Column Stacked Chart

I originally meant to send you this link, it works there as well for your column charts. http://code.google.com/apis/ajax/playground/?type=visualization#column_chart On Nov 1, 11:38 am, Matt wrote: > First, goto this Google playground site for bar > charts:http://code.google.com/api

[visualization-api] Re: Column Stacked Chart

First, goto this Google playground site for bar charts: http://code.google.com/apis/ajax/playground/?type=visualization#bar_chart In the editable code, near the very bottom, add: isStacked: true So it will look something like this: new google.visualization.BarChart(document.getElementById('visual

[visualization-api] Re: x axis range

Jinji, thank you for uncovering something not in the doc. I got my solution working, utilizing asgallant's recommendation for using a DataView that hides columns when a user enters a min and max that they choose. Version 2 may eventually use the strictFirstColumnType with the Dashboard. So I wil

[visualization-api] Re: x axis range

The one big hangup is that my AreaChart demands the first column (xaxis) be a string, while the control filter expects to see numeric values because I am using the number filter: 'controlType': 'NumberRangeFilter', On Oct 31, 4:33 pm, Matt wrote: > Roni and asgallant, tha

[visualization-api] Re: x axis range

min/max value. however, you can use the > NumberRangeFilter. > here is a small sample that you can play > with:http://code.google.com/apis/ajax/playground/?type=visualization#numbe... > > > > > > > > On Sat, Oct 29, 2011 at 12:05 AM, Matt wrote: > > I'

[visualization-api] x axis range

I'm plotting bucketed data that looks like a bell curve. Works just fine; who doesn't love bell curves? With bell curve data, outlier data on either side can make the graph look less 'pretty'. I;ve been pouring over the Configuration Options here: http://code.google.com/apis/chart/interactive/do

[visualization-api] API Data Encryption

Google Visualization API and Google Charts API ... Do I understand correctly that Visualization API does not send unencryted client data over the web, while Charts API DOES send client data over the web? Any clarification appreciated. -- You received this message because you are subscribed to th

[visualization-api] Data Rounding

Is there a way to change the default rounding from the tenth place to the hundredth place? For example I have a PieChart that displays a small slice that is shown as 0.1%, but if you do the math it is actually 0.05% and I would rather have it display as such. -- You received this message because

[visualization-api] Motion chart no longer zooming

_mediawiki/index.php/PDG_visualizations/Vector_mesons_uds The original spreadsheet with the Motion Chart is here in the ``Vector Mesons (Gadget)" tab. https://spreadsheets.google.com/spreadsheet/ccc?key=0AqEmDaJ8A2rAdGlmZGxuX3NDWHpuZVlpZTNXV3lsLXc&hl=en_US#gid=5 Is anyone else having this pro

[visualization-api] Page Numbers on Table

Is there a way (without using the event option) to add page numbers on the bottom of a table. We have a table with hundreds of rows and it would be nice to know where you are at if we limit the view to 20 rows. Thanks. -- You received this message because you are subscribed to the Google Groups

[visualization-api] Re: [ASK] How to delete auto increment id

Set the 'showRowNumber' option to false when calling draw. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To post to this group, send email to google-visualization-api@googlegroups.com. To unsubscribe from this group, send email to

[visualization-api] Re: Options - hAxis.direction

Try changing your hAxis assignment to... hAxis : {direction: -1} -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To post to this group, send email to google-visualization-api@googlegroups.com. To unsubscribe from this group, send em

[visualization-api] Re: Data Source Creation In java

You also need the visualizon-datasource JAR in your WEB-INF/lib directory. This JAR contains the DataSourceServlet class. JAR download : http://code.google.com/p/google-visualization-java/ -- You received this message because you are subscribed to the Google Groups "Google Visualization API"

[visualization-api] Re: Annotated Time Line and Time

You can get time to be included if you set the first column to a 'datetime' type. There doesn't appear to be a way to force a specific range for the x- axis. You can use the setVisibleChartRange(start,end) method if you want to set an initial zoom, but I couldn't find a way to force a 24 hour win

[visualization-api] Re: colorOption has no effect

Try... options['state'] = '{ "colorOption":"_UNIQUE_COLOR" }'; It works on the playground. On Feb 21, 8:28 pm, pzbrawl wrote: > Double quotes instead of single don't work either: > >      options['state'] = { "colorOption":"_UNIQUE_COLOR" };   -- You received this message because you are subs

[visualization-api] Re: colorOption has no effect

>From the docs the 'state' option is a string that contains an object definition. Try putting quotes around your object definition. On Feb 20, 6:29 pm, pzbrawl wrote: > var chart = new > google.visualization.MotionChart(document.getElementById('chart_div')); > var options = {}; > options['width'

[visualization-api] Re: using link in the output table

I can't tell from your example, but you need to be sure you have the 'allowHtml' option set to true. If you have that set to true and it still isn't working could you provide a more fully formed example to debug? On Feb 18, 5:18 pm, Isabel Xiu wrote: > Does anyone know whether I could output lin

[visualization-api] Re: Google API set Multicolor question

The best use case that I could see would be for a performance type report. In this case you would have a single column of numeric data to plot and would want to highlight any result below or above specific thresholds. The OP might be able to provide a more detailed use case as it seems to be w

[visualization-api] Re: Google API set Multicolor question

It would appear that the BarChart only supports custom colors applied to all the bars for an entire column of data. This is referred to in the Data Format section of the documentation by the following paragraph. http://code.google.com/apis/visualization/documentation/gallery/barchart.html The

  1   2   >