[visualization-api] Dashboard Memory Issues

2017-12-11 Thread Lucas Heasman
Hi everyone, I am fairly new to coding and have created a webpage with multiple dashboards on it. However over time the memory keeps increasing, I have pinned it down to when I draw each dashboard. I am doing this every 5 seconds. Here is my code for one of the dashboards: var chart,

[visualization-api] [Dashboard Documentation] - Bad first example

2016-04-18 Thread Santiago Acosta
This is simply to inform that the first full example on the dashboard introduction page does not work Controls and Dashboards Trying to copy/paste to see what it produces gives the following

Re: [visualization-api] dashboard HTML layout

2015-10-10 Thread 'Daniel LaLiberte' via Google Visualization API
I don't know why there would be a problem with putting the chart and control elements wherever you like, at least not at this time. The dashboard element is not really used for anything. On Fri, Oct 9, 2015 at 5:20 PM, sylviat84 wrote: > (1) Does the HTML container (div)

[visualization-api] dashboard HTML layout

2015-10-09 Thread sylviat84
(1) Does the HTML container (div) for a dashboard need to be the HTML parent of the containers of its graphs/controls? ... ,,, (2) Or wold something like this work? .. I have tried something like (2) and am having a problem getting the controller to 'talk' to the table.

[visualization-api] DashBoard Google Chart

2015-06-01 Thread Tim
Really new to Google Chart - and already some issues to set all elements together. Can someone help me to create the entire coding for: Data snapshot: ['Month','Year','Direct entry','External referrer','Search engine','Social media'], ['April',2012,11497,1260,4039,9],

[visualization-api] Dashboard with ChartRangeFilter and unknown number of columns

2015-03-25 Thread Aníbal Pablo Bengardino
Hey guys, As you can see by the subject, I'm trying to come up with a dashboard which should have a *ChartRangeFilter *AND at least a *CategoryFilter*, all of this while having a datasource with an unknown number of columns, which I should pivot somehow. Here is what my source data looks

[visualization-api] dashboard control category filter sort descending

2014-07-12 Thread qdkid
By default, dashboard control=category filter sorts the field ascending. is there a way to sort it descending? Thank you. For example: https://code.google.com/apis/ajax/playground/?type=visualization#categoryfilter_control -- You received this message because you are subscribed to the

[visualization-api] Dashboard, Bindings and Pie Charts

2014-05-23 Thread DeadRabbittt
Hi there, i have a question regarding the binding of data used in a dashboard, shown in a pie chart. This is a stripped down example: function drawVisualization() { // Prepare the data var dataShow = google.visualization.arrayToDataTable([ ['Year' 'Month' 'Category' 'Value'],

[visualization-api] Dashboard

2014-05-07 Thread TheInnovator
Has anyone ever created a dashboard that accepted dates (Begin: and End:)? I have a SharePoint list that has date columns and I want my pie chart to render based on the begin and end dates. I would appreciate any insight on how to do this if possible. Thanks! -- You received this message

[visualization-api] Dashboard (line chart + area chart + chart range filter) not showing up in IE8

2013-06-11 Thread boooeee
I have the following visualization which will not show up in Internet Explorer 8. It seems to work fine with Chrome, Firefox, and Safari. I have not tested any other versions of IE. link: http://bettingmarketanalytics.blogspot.com/2013/06/nba-finals-game-2-win-probability-graph.html Any

Re: [visualization-api] Dashboard with two related datasources and charts.

2013-06-11 Thread Tim Kuhn
This sample is gold and I have plugged it on a production site. Its works great everywhere but in IE8. In IE8, the statement control1 = createDashboard1(); generates an error 'Object doesn't support this property or method' which causes prevents the listener from being able to keep the two

Re: [visualization-api] Dashboard with two related datasources and charts.

2013-06-11 Thread asgallant
If you can post the code you are using or a link to the page, I can take a look and see what might be causing the problem in IE8. On Tuesday, June 11, 2013 4:31:25 PM UTC-4, Tim Kuhn wrote: This sample is gold and I have plugged it on a production site. Its works great everywhere but in

Re: [visualization-api] Dashboard with two related datasources and charts.

2013-06-11 Thread Tim Kuhn
If you pull it straight from Riccardo's sample on GitHub hopefully you will be able to reproduce: https://gist.github.com/battlehorse/1242360 Tim On Tue, Jun 11, 2013 at 4:41 PM, asgallant drew_gall...@abtassoc.comwrote: If you can post the code you are using or a link to the page, I can take

Re: [visualization-api] Dashboard with two related datasources and charts.

2013-06-11 Thread asgallant
I'm not entirely sure why IE is complaining, but the error goes away if you use the var keyword before control1 (this is a good idea for all variables, so they don't clutter up the global namespace): function drawVisualization() { var control1 = createDashboard1(); var control2 =

Re: [visualization-api] Dashboard with two related datasources and charts.

2013-06-11 Thread Tim Kuhn
Brilliant. You are totally right. That solved it and the dashboard now works in IE8 as well as any other browser. On Tue, Jun 11, 2013 at 7:09 PM, asgallant drew_gall...@abtassoc.comwrote: I'm not entirely sure why IE is complaining, but the error goes away if you use the var keyword before

[visualization-api] Dashboard issue - e is null at initial load

2013-03-12 Thread SJA
Hi I have written a dashboards of sorts, but one that uses a trick I found (attributable to asgallant, I think), which allows me to present some charts based on a hidden underlying dashboard/datatable. I'm having an issue with it though, in that the piechart doesn't draw on first load of the

[visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread Michelle Stewart
I have multiple filters of varying types in a dashboard, along with a table. I draw a chart outside of that with some listeners because it is aggregated and was being finicky. Now, my problem: I cannot select any of the filters (they aren't populated and don't allow interaction, drags do

Re: [visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread Sergey Grabkovsky
Hello, It would be extremely helpful if you could distill your problem down to a jsfiddle demo. A common reason for charts not accepting interaction is that an error occurred at some point. Check the JavaScript console to see if that is indeed the case. - Sergey On Fri, Mar 1, 2013 at 12:07

Re: [visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread Michelle Stewart
OK... I have a jsfiddle set up but this is I think my first one from scratch so it's not working at all at the moment (although I had a local copy and copied everything not in the header) and then included jsapi. http://jsfiddle.net/mstewart/CwCek/8/ here is the jsfiddle. Thank you for your

Re: [visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread Michelle Stewart
well, after further messing with the jsfiddle I got the fiddle working, but it doesn't reproduce the error I have when I run it on my site On Fri, Mar 1, 2013 at 1:40 PM, Michelle Stewart mstew...@nysus.net wrote: OK... I have a jsfiddle set up but this is I think my first one from scratch so

Re: [visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread Sergey Grabkovsky
Could you point to your site so that I may debug it there? - Sergey On Fri, Mar 1, 2013 at 1:59 PM, Michelle Stewart mstew...@nysus.net wrote: well, after further messing with the jsfiddle I got the fiddle working, but it doesn't reproduce the error I have when I run it on my site On Fri,

Re: [visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread Michelle Stewart
it is intranet, I'm sorry On Fri, Mar 1, 2013 at 2:01 PM, Sergey Grabkovsky gra...@google.com wrote: Could you point to your site so that I may debug it there? - Sergey On Fri, Mar 1, 2013 at 1:59 PM, Michelle Stewart mstew...@nysus.netwrote: well, after further messing with the

Re: [visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread Sergey Grabkovsky
In that case, I'm not sure how I can help you. Good luck! - Sergey On Fri, Mar 1, 2013 at 2:02 PM, Michelle Stewart mstew...@nysus.net wrote: it is intranet, I'm sorry On Fri, Mar 1, 2013 at 2:01 PM, Sergey Grabkovsky gra...@google.comwrote: Could you point to your site so that I may

Re: [visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread asgallant
The other possibility is that there is a CSS/layering issue in play. I once encountered a problem where the container div of a Table ended up covering the entire page, even though most of it was transparent, so visually there was no problem - it was just impossible to interact with any of the

Re: [visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread Michelle Stewart
thanks for the suggestion. That doesn't appear to be the case especially since I cannot even click or interact with any of the controls. I also thought the version of jQuery may be to blame because that was one of the differences I noticed in jsFiddle, but that hasn't solved it either. On Fri,

Re: [visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread Michelle Stewart
Does it help narrow it down at all that I was able to do a onclick event for the table? That says that at least that much rendered correctly, it highlights right and stuff. It's just the tooltips in the chart and the filters that don't work. On Fri, Mar 1, 2013 at 2:25 PM, Michelle Stewart

Re: [visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread Michelle Stewart
SOMEHOW IT WAS THE CSS! It was a very simple css so I haven't figured out how it broke anything yet, but I'll post back for posterity when I do get it. On Fri, Mar 1, 2013 at 2:30 PM, Michelle Stewart mstew...@nysus.net wrote: Does it help narrow it down at all that I was able to do a onclick

Re: [visualization-api] Dashboard Drawn, cannot interact

2013-03-01 Thread Michelle Stewart
I had floats on the div containing my filters and my div containing my chart and the chartRangeFilter. Those blocked the functionality. I changed them to display: inline-block; and everything worked great! On Fri, Mar 1, 2013 at 2:46 PM, Michelle Stewart mstew...@nysus.net wrote: SOMEHOW IT

[visualization-api] Dashboard redraw into Modal Window

2013-01-14 Thread Michelle Stewart
I have a series of buttons that when clicked each pass a separate chart to the same function that redraws the chart in a jQuery UI dialog window where it is much larger and can be easily printed (via a separate function). Some of my data does not easily fit into these charts and is better

[visualization-api] Dashboard with Gauges

2012-09-18 Thread Carlo Durso
HI, I'm working on a dashboard that uses few charts and a ChartRangeFilter as control. I'm currently trying to add some gauges that gets updated by sliding the control. You can find a prototype here: http://conviertemas.com/report/excel/datalytics.html The idea is to calculate the average

[visualization-api] Dashboard and Multiple charts

2012-09-18 Thread Grant Savvy
Hi, I'm attempting to create a dashboard with multiple charts each displaying different data from a datatable. My data has 6 columns Image Product Range Total SplitA SplitBProd1main44932Prod2main22 1210Prod3sub22319Prod4third201010 the product is unique So far I have a table and

[visualization-api] Dashboard with Gauges

2012-09-18 Thread Carlo Durso
HI, I'm working on a dashboard with couple of charts and a ChartRangeFilter control wrapper. I'm trying to add some gauges that interact with the filter, here's a prototype: http://conviertemas.com/report/excel/datalytics.html The idea is that the gauge calculate the average value for the

[visualization-api] Dashboard Memory Leak

2012-09-14 Thread matt
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

[visualization-api] Dashboard Capabilities?

2012-07-01 Thread JerDoggMcKoy
I'm trying to understand what is being provided here. I am hoping to hire someone to build a marketing dashboard with charts and graphs that pulls data from Google Analytics, MailChimp email, and Mongoose Metrics Call Tracking. Would the Google Charts Google Dashboard system work for this? --

Re: [visualization-api] Dashboard - using CategoryPicker control on a column that isn't drawn

2012-05-28 Thread MC Get Vizzy
in a ChartWrapper. (It's not exactly the same as creating a DataView object.) Hope that helps, let me know if you have further questions. MC Get Vizzy -- Forwarded message -- From: AnnaBrown bho...@gmail.com Date: Sat, May 26, 2012 at 4:02 AM Subject: [visualization-api

Re: [visualization-api] Dashboard - using CategoryPicker control on a column that isn't drawn

2012-05-28 Thread Brad Hontz
message -- From: AnnaBrown bho...@gmail.com Date: Sat, May 26, 2012 at 4:02 AM Subject: [visualization-api] Dashboard - using CategoryPicker control on a column that isn't drawn To: Google Visualization API google-visualization-api@googlegroups.com I'm using a the Query object

[visualization-api] Dashboard - using CategoryPicker control on a column that isn't drawn

2012-05-25 Thread AnnaBrown
I'm using a the Query object to return a three columns of a table from a google spreadsheet. The first column is a label column, the 2nd and 3rd data values. I'm trying to create a dashboard binding a CategoryPicker control object and a ControlWrapper (ScatterChart) object. I'd like to use the

Re: [visualization-api] Dashboard with two related datasources and charts.

2012-02-28 Thread Brian Smith
Thank you Onno for the update on your work and the link to your final project! Nice work. The dashboard I'm building is just for internal use by our staff. I have about a dozen spreadsheets I'm trying to pull together so I may just have to be satisfied with what I can quickly get running.

Re: [visualization-api] Dashboard with two related datasources and charts.

2012-02-27 Thread Brian Smith
I'm trying to do something like this where I have multiple google spreadsheet datasources with a school name column. I'd like to be able to do what you are doing here, but this method doesn't seem to work as written for that situation. Any ideas on what I could/should try? Thanks for the

Re: [visualization-api] Dashboard with two related datasources and charts.

2012-02-27 Thread asgallant
Keep in mind that the arrays are of column *indices*, not labels. If 'school name' is the first column in the first table and the second column in the second table, then the keysArray would look like this: var keysArray = [ [0, 1] ]; If that doesn't solve the problem for you, post your

Re: [visualization-api] Dashboard with two related datasources and charts.

2012-02-27 Thread Brian Smith
I'm sorry, I wasn't clear that I was trying to post a reply under Riccardo Govoni's post! Thanks for your reply and offer of help asgallant. What I'm trying to do is make a control that will apply a filter to two (or more) dashboards. I tried using the method that Riccardo posted above, but it

Re: [visualization-api] Dashboard with two related datasources and charts.

2012-02-27 Thread Onno Benschop
Brian, I never got it to work, but my handy work can be seen here - in the end I combined the data from multiple spreadsheets into one, then ran the dashboard across that, ugly but functional: http://dashboard.worldsolarchallenge.org/ (Check the Dashboard, the other pages are derivative stats -

[visualization-api] dashboard charts with different data sources

2011-12-19 Thread asgallant
I've been experimenting with dashboards, and I'm trying to build one with several charts with related, but disparate data sources (which doesn't lend well to building a single DataTable with). I can draw them separately with no difficulty, the problem is that I need to fire a 'ready' event

Re: [visualization-api] Dashboard with two related datasources and charts.

2011-09-26 Thread Riccardo Govoni ☢
So you want a set of controls on dashboard 1 to drive the contents (filters and charts) of a second dashboard, and the two dashboards are fed with different datatables, right ? If so, there isn't a pre-cooked way of joining together the two, because of the nuances of 'translating' the filtering

[visualization-api] Dashboard with two related datasources and charts.

2011-09-22 Thread Onno Benschop
Before I start coding I'm trying to get my head around how this is intended to hang together. Links and/or sample code would be a bonus, but really I'm trying to get it. I have a working Dashboard that uses a datasource to draw controls, a map and a table (and thanks to this forum, you can now

[visualization-api] Dashboard - addListener 'select' - not working

2011-09-20 Thread Onno Benschop
I am using a visualisation.Dashboard to combine some controls, a map, a table and a chart. When the visualisation is drawn, the table reflects the markers visible on the map as expected. I want the ability for the user to click on a marker and have the appropriate row highlighted and vice-versa.

[visualization-api] dashboard + string filter + multiple columns

2011-08-16 Thread IMTheNachoMan
Is it possible to create a dashboard where I can have a string filter that filters on on multiple columns? And/or any other way to do it? -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To post to this group, send email to

[visualization-api] Dashboard sort

2011-07-15 Thread cam luc
My dashboard has a categoryPicker, a table, a barChart and a pieChart. It also has code to synchronize the sort order between the table and the other 2 charts. (I call dashboard.draw(data) in the sort event listener) The code works but it has an uncomfortable period of browser Nonresponding (~ 5

[visualization-api] Dashboard controls with Fusion Tables as Data Source

2011-06-20 Thread Michel
Hi, I am struggling to build an html file that would include a single Fusion Table as data source and a couple of visualizations (bar chart and table) managed by a couple of controls (filter out the rows based on 1 column value; i.e. Column 'ACCOUNT' includes or equal a given name) and a range