Re: [visualization-api] Weird Behavior with Google Charts and Angular

2023-06-27 Thread 'Daniel LaLiberte' via Google Visualization API
I would look into whether you can narrow down the problem with this one computer by disabling all chrome extensions. Also check whether the problem occurs with other browsers. Chrome itself is updated frequently, so perhaps there was some conflict introduced that only affects this one computer

[visualization-api] Weird Behavior with Google Charts and Angular

2023-06-27 Thread Greg Murdoch
Good Day I'm running into a weird issue that I can't replicate. I have a page with ~ 50 charts, which are a mix of column, stacked column, bar, and line charts. The data for each chart can be very large, comprising hundreds or thousands of points. Our users are able to load a batch of

[visualization-api] Graphviz?

2023-06-14 Thread 'Marlon Regenhardt' via Google Visualization API
I found a tools building a graph in dot format and rendering it using https://chart.apis.google.com/chart, but I can't find documentation for that that isn't deprecated. In the charts overview I find lots of different charts, but nothing goes "here's the WebAPI, send dot code and get a graph".

[visualization-api] I don't get any error but I don't see anything

2023-05-12 Thread Roberto Quintela
Hi I'm using this versions "angular-google-charts": "^2.2.3", "@angular/common": "^14.2.0", I have a component where I0m going embed several graphics ..` ... chartPorcentajeAdjudicadasColumns = ['Año', 'Presentadas', 'Adjudicadas']; chartHorasCostesOfertasColumns = ['Año', 'Horas',

[visualization-api] Showing race times

2023-05-11 Thread Paul Wilkes
Hi, Im looking to do a line graph that will display race times but struggling to format the values so that they will plot in the graph. My times are in the format of 00:45.97 (mm:ss:SS) Please could someone help me with the correct format for laying this out? Many thanks -- You received

[visualization-api] Bar chart race in Google Visualization

2023-05-11 Thread Nick Dunbar
Hi, I was wondering if anyone has used the Google Visualization API to do a bar chart race similar to the one on this page: https://flourish.studio/examples/ It would be great to see a fFiddle of this if one exists. Thanks in advance, Nick -- You received this message because you are

[visualization-api] Re: I need to add the averages of the values to my chart of type "ChartAreas".

2023-05-05 Thread José Vicente Zahonero
Thank you very much, everything is now fixed and working perfectly. I leave my code here if anyone needs to take a look. El viernes, 5 de mayo de 2023 a las 12:52:18 UTC+2, Ray Thomas escribió: > The second bit is easier. I created copies of the CSV file and changed the > year in them, now I

[visualization-api] Re: I need to add the averages of the values to my chart of type "ChartAreas".

2023-05-05 Thread 'Ray Thomas' via Google Visualization API
The second bit is easier. I created copies of the CSV file and changed the year in them, now I had three files to test this on, jose-2022.csv, jose-2023.csv and jose-2024.csv. To get the current year in JavaScript use new Date().getFullYear(); Then it's just a matter of creating the new file

[visualization-api] Re: I need to add the averages of the values to my chart of type "ChartAreas".

2023-05-05 Thread 'Ray Thomas' via Google Visualization API
You are getting the "b.getTimezoneOffset is not a function" error because the date in CSV file is in the wrong format. This is your original format: 01-01-2023,7.7,13.0,69,99 02-01-2023,6.5,12.1,67,98 03-01-2023,7.0,12.6,67,99 It should be: 2023-01-01,7.7,13,69,99 2023-01-02,6.5,12.1,67,98

[visualization-api] Re: I need to add the averages of the values to my chart of type "ChartAreas".

2023-05-05 Thread José Vicente Zahonero
First of all, thanks you for your time. I have just tried your code and first of all I get an error when I try to run it, it says "b.getTimezoneOffset is not a function". Apart from that, I have tried to add a variable to the path of the csv file so that each year it reads the corresponding

[visualization-api] Re: I need to add the averages of the values to my chart of type "ChartAreas".

2023-05-04 Thread 'Ray Thomas' via Google Visualization API
Aftere reading all the links I gave (several times), I finally worked this out. It confused me why so many tables seemed to be made. Here's the sequence of events: 1) Import the data into a datatable 2) Create a new table view with the grouping data and averages . As all the data is being

[visualization-api] Re: I need to add the averages of the values to my chart of type "ChartAreas".

2023-05-02 Thread José Vicente Zahonero
I have modified my php file and added the averages at the last line of the csv. Now I don't know how I can add this data to my chart. Can you help me? El martes, 2 de mayo de 2023 a las 6:07:58 UTC+2, José Vicente Zahonero escribió: > Hi, I have just read the documentation in the link you

[visualization-api] Re: I need to add the averages of the values to my chart of type "ChartAreas".

2023-05-01 Thread José Vicente Zahonero
Hi, I have just read the documentation in the link you sent me and it didn't clarify much, to be honest. When I convert the table to csv the columns are specified in the database, moreover, then I convert that csv to Excel and there is no problem when it comes to differentiate the dates from

[visualization-api] Re: I need to add the averages of the values to my chart of type "ChartAreas".

2023-05-01 Thread 'Ray Thomas' via Google Visualization API
When CSV files are used by the API, it guesses the data type of each column. It's reading the number columns properly but I think it is importing the date as a string and so cannot graph it on a trendline. From

[visualization-api] Re: I need to add the averages of the values to my chart of type "ChartAreas".

2023-05-01 Thread 'Ray Thomas' via Google Visualization API
I used a LineChart because Trendlines only work on Scatter Charts, Bar Charts, Column Charts, and Line Charts. Sorry, I should have explained that in my answer. I also don't have PHP installed so what I did was use a query to open the CSV file after I rewrote the dates. The complete code I

[visualization-api] Re: I need to add the averages of the values to my chart of type "ChartAreas".

2023-05-01 Thread José Vicente Zahonero
Hi, I have tried changing the format of the dates to '-MM-dd' in the csv and I have added the code you have indicated but it doesn't show me any average line in the graph. [image: Captura_001.png] El lunes, 1 de mayo de 2023 a las 1:41:03 UTC+2, Ray Thomas escribió: > The quickest way is

[visualization-api] I need to add the averages of the values to my chart of type "ChartAreas".

2023-04-29 Thread José Vicente Zahonero
Hi, I have an area chart in which I represent some values taken from a csv file. I would like to be able to add the averages corresponding to each column to the graph, can you help me? My code is in the attached file. Thanks for you help. -- You received this message because you are

[visualization-api] Re: Cannot get PieChart to update data after button click

2023-04-28 Thread Arthur Hebert
Hello Ray, I opened the earlier email confirmations that I received for this thread. It's my understanding (which might be wrong) that the day of approval is what is shown. My two earlier posts appear to happen in the wrong order, but that's because of when they were approved. Anyways, I

[visualization-api] Re: Google Charts with CSV file

2023-04-28 Thread 'Ray Thomas' via Google Visualization API
You're too kind Joe. Once I realized what you are supposed to do with the query language it was surprisingly easy to create the chart. I let myself get a bit confused by some of what I found on Stack Overflow at first, such as posts using external libraries to import the data, which aren't

[visualization-api] Re: Google Charts with CSV file

2023-04-28 Thread Joe Davies
Ray Thomas, what can I say..., thank you so much for the effort you've gone to in finding a solution for me, it's brilliant and it all worked straight off the bat,. You have gone above and beyond my expectations! What a top man you are, may your generosity be returned to you a hundredfold! I

[visualization-api] Re: Google Charts with CSV file

2023-04-27 Thread 'Ray Thomas' via Google Visualization API
It took a little bit of finding but I got the basics from a 9-year old thread in this group. You have to use a query to get the data from the CSV file. Here's the code using your CSV file - i named it mycsv.csv // Load the Charts and the corechart package. google.charts.load('current',

[visualization-api] Re: Cannot get PieChart to update data after button click

2023-04-27 Thread 'Ray Thomas' via Google Visualization API
Hello Arthur, I couldn't figure out why your code wasn't working so I started over. Two ways of doing this came to mind, one way is to draw the charts then use a button to toggle the display property of the divs on and off. The other way was to redraw the charts on a button click in a single

[visualization-api] Google Charts with CSV file

2023-04-27 Thread Joe Davies
I have the following html which works fine in producing a stacked column chart with Google Charts. I want to replace the static data in the html with an external csv file and am unable to get it to work. Static Example (This works fine)

[visualization-api] Google Charts with CSV file

2023-04-27 Thread Joe Davies
I have the following html which works fine in producing a stacked column chart with Google Charts. I want to replace the static data in the html with an external csv file and am unable to get it to work. Static Example (This works fine)

[visualization-api] Re: TIMEline Charts API Zero shows up as JAN in tool tips.. and so on.

2023-04-25 Thread 'Ray Thomas' via Google Visualization API
Hi Rajesh, It is to do with how JavaScript counts months, they start from 0 not 1, and run from 0 (January) to 11 (December). It does it with days of the week as well, the first day of the week is 0 and run from 0 (Sunday) to 6 ( Saturday). Ray On Monday, April 24, 2023 at 11:14:42 AM UTC-4

[visualization-api] Re: Cannot get PieChart to update data after button click

2023-04-24 Thread Arthur Hebert
I see that this is an old post. I'm trying to figure out the same problem. Chrome developer tools can be opened with Shift+Ctrl+J. I got 2 errors. I apparently fixed 1 with . The other one is a navigator error or something. Still lost. On Thursday, November 29, 2018 at 3:48:50 PM UTC-6

[visualization-api] TIMEline Charts API Zero shows up as JAN in tool tips.. and so on.

2023-04-24 Thread Rajesh Sharma
The months in this start with ZERO... new Date($YY,$MM,$DD) When $MM is zero. It shows Jan, Tool tips. It should be 1. -- 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

[visualization-api] Re: How to remove zero in y-axist

2023-04-22 Thread Arthur Hebert
Specifying the tick marks would work. Here is an example of options (you just need vAxis:{ ticks: [-1, 0, 1, 2, 3, 4, 5] } ): var options = { width: 500, //adjust as needed so the x and y scales are the same. height: 500, //adjust as needed so the x and y scales are the same.

Re: [visualization-api] Multiple Line Graph

2023-04-22 Thread Arthur Hebert
You didn't make it clear if you looked at the 'Code it yourself on JSFiddle' link in the help file. Your rows aren't going in the data table because addRows is commented out. Studying the complete code given in the JSFiddle link should help. On Wednesday, March 22, 2023 at 11:16:05 AM UTC-5

[visualization-api] Re: Cannot get PieChart to update data after button click

2023-04-22 Thread Arthur Hebert
https://www.gstatic.com/charts/loader.js";> // Load the Visualization API and the piechart package. //google.visualization.load('current', {'packages':['corechart']}); google.charts.load('current', {'packages':['corechart']}); // Set a callback

[visualization-api] Re: Hey people. Need help. Will be much appreciated.

2023-04-22 Thread Arthur Hebert
I know this is an old post. This helped me a lot. Trying to pass the help on to a similar post since this post helped me. On Wednesday, February 27, 2013 at 3:14:46 PM UTC-6 Jay Modha wrote: > Thank you so much mate..works perfectly :D > > On Tuesday, February 26, 2013 5:20:36 PM UTC, Jay

[visualization-api] vAxis Label Padding

2023-04-19 Thread Dave Phillips
The label for the vAxis nearly touches the axis. Is there a property to pad the label or set the right margin to force the label away from the axis?[image: Screenshot vAxis Padding.png] -- You received this message because you are subscribed to the Google Groups "Google Visualization API"

[visualization-api] Pie chart query

2023-04-16 Thread SAMARJEET SINGH
can anyone tell me how can add pie charts in one div class and its legend in another div class, also how can i make css properties work on these legend -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group

[visualization-api] Years format

2023-04-14 Thread Sergey Cherepnin
Hello, I found that if I use "date" format and custom format like: hAxis.format: 'MM dd ', there is bug that dates starting from Dec 26 2021 are displayed as Dec 26 2022. If I use format: 'MM dd ' - everything works good. - not documented, but works, so it confuses and could

[visualization-api] Sankey charts - same node and multiple links but with different colors

2023-04-10 Thread Siddharth Gangwar
Hello, I am currently using Sankey charts from Google Charts to visualize some data. In my scenario, there are multiple links originating from the same node, but I want each link to have a different color. I have attempted to assign custom colors to these links, but I have found that the chart

Re: [visualization-api] Google Chart CategoryFilter suddenly not works

2023-04-04 Thread P.Udayasooriyan
Thanks, now it works fine with 'current'. also tried with '51' that also works. On Tuesday, April 4, 2023 at 11:27:05 PM UTC+5:30 Daniel LaLiberte wrote: > This is a regression bug in v52. I rolled back the rollout, so 'current' > is (or soon will be) '51' again. > > On Tue, Apr 4, 2023 at

Re: [visualization-api] Re: Dynamic Swap Y-Axis Values in same Scatter Chart

2023-04-04 Thread 'Ray Thomas' via Google Visualization API
If you have all the values in your data already, what you could do is create a dataview from that - see https://developers.google.com/chart/interactive/docs/reference#dataview-class and then use example: view.setColumns([0,1,3]) tos et the columns to be shown. see

Re: [visualization-api] Issue with category filters using Google charts version 52

2023-04-04 Thread Saravanan Kandaswamy
Thankyou... On Tuesday, April 4, 2023 at 1:57:41 PM UTC-4 Daniel LaLiberte wrote: > This is a regression bug in v52. I rolled back the rollout, so 'current' > is (or soon will be) '51' again. > > On Tue, Apr 4, 2023 at 1:43 PM Saravanan Kandaswamy > wrote: > >> From yesterday, I am seeing

Re: [visualization-api] Re: Google Charts New Release Candidate: V52, Feb 20, 2023

2023-04-04 Thread 'Daniel LaLiberte' via Google Visualization API
There are two known regression bugs in v52. 1. CategoryFilter css problem 2. fontName option used (via webfonts.js) with material charts. So I rolled back the rollout, so 'current' is (or soon will be) '51' again. It would be great if more people could keep testing the 'upcoming' version before

Re: [visualization-api] Issue with category filters using Google charts version 52

2023-04-04 Thread 'Daniel LaLiberte' via Google Visualization API
This is a regression bug in v52. I rolled back the rollout, so 'current' is (or soon will be) '51' again. On Tue, Apr 4, 2023 at 1:43 PM Saravanan Kandaswamy wrote: > From yesterday, I am seeing the category filters are not working as > expected.. The options are appearing far below from the

Re: [visualization-api] Google Chart CategoryFilter suddenly not works

2023-04-04 Thread 'Daniel LaLiberte' via Google Visualization API
This is a regression bug in v52. I rolled back the rollout, so 'current' is (or soon will be) '51' again. On Tue, Apr 4, 2023 at 1:43 PM P.Udayasooriyan wrote: > i been using Google Chart almost a year. it was working without issue. > > but suddenly today CategoryFilter in TableChart not

[visualization-api] Google Chart CategoryFilter suddenly not works

2023-04-04 Thread P.Udayasooriyan
i been using Google Chart almost a year. it was working without issue. but suddenly today CategoryFilter in TableChart not working. when i checked and debug i found that some html codes were scrambled like... below Choose a value... before it was like Choose a value... what has happend?

[visualization-api] Issue with category filters using Google charts version 52

2023-04-04 Thread Saravanan Kandaswamy
>From yesterday, I am seeing the category filters are not working as expected.. The options are appearing far below from the drop down.. Even google chart category filter example also shows the same behaviour.. Any fix expected for this issue? -- You received this message because you are

Re: [visualization-api] Re: Dynamic Swap Y-Axis Values in same Scatter Chart

2023-04-03 Thread Kenton Jones
Thank you, that seems like what I'm after in terms of pull down selector. My data table has x values and several y values already in there, and I want to swap out y values to make a "new" scatter chart. On Fri, Mar 31, 2023 at 12:10 PM 'Ray Thomas' via Google Visualization API <

Re: [visualization-api] Re: Google Charts New Release Candidate: V52, Feb 20, 2023

2023-04-03 Thread 'Daniel LaLiberte' via Google Visualization API
The 'current' version is now '52'. Due to caching, it may take a couple hours before you see the change. For most people, there should be no visible change. On Mon, Mar 20, 2023 at 12:44 PM Daniel LaLiberte wrote: > For some reason I am not yet aware of, this group was blocked for the past >

[visualization-api] Re: Dynamic Swap Y-Axis Values in same Scatter Chart

2023-03-31 Thread 'Ray Thomas' via Google Visualization API
This is fairly easy to do, but you are going to have to change the type of chart you are drawing. This is because scatter charts do not support the isStacked option which allows you to use the percent stacked display. It's just not in the list of scatter chart options -

[visualization-api] Dynamic Swap Y-Axis Values in same Scatter Chart

2023-03-30 Thread Kenton Jones
I have a google scatter chart up and running. Chart shows a standard x-axis value and y-axis value. I'm thinking of adding a feature where user can click a button anCan you advise on general approach to add a button when clicked the chart will update from X date Y value to X date Y percent? (and

[visualization-api] Re: Potential error in stylesheet warning

2023-03-24 Thread Gerry Kroll
All: The error message is embedded in the css parser, and has absolutely nothing to do with Google Charts. Please accept my apology for not searching for this message in the application code. Beside that, my application is using the now-deprecated Google Charts APIs. Once more, apologies.

[visualization-api] Re: Masking Loader.js References for Firewall

2023-03-24 Thread 'Daniel LaLiberte' via Google Visualization API
By "masking" I would guess you mean that we should load remove the "https://www.gstatic.com; prefix on links within the loader, so that it loads from wherever you are getting the loader from. I believe I understand your reason for needing this, but there are security reasons why the full URL

[visualization-api] Re: Potential error in stylesheet warning

2023-03-24 Thread 'Daniel LaLiberte' via Google Visualization API
(Your message was marked as spam in my gmail, so I didn't see it until now. Not sure why, but probably because of the links. Perhaps this is related to why the group was blocked for a few days. Not your fault, of course.) There is no string in the Google Charts code matching what you are

Re: [visualization-api] sporadic error in googleChart visualization

2023-03-24 Thread 'Daniel LaLiberte' via Google Visualization API
There is no string in the Google Charts code that matches that message: "getInitChartSizeValue". I don't get any match for that in google search either. But "googleChartLibrary" is found by google search, though it is not in the code. So you must be using some external library that wraps around

[visualization-api] sporadic error in googleChart visualization

2023-03-24 Thread Simone Piccinelli
Hello, We have tried to integrate the googleChart API with our application for displaying Gantt charts. However, we occasionally encounter the error shown in the screenshot in the developer console. This error then resolves itself without any intervention from us. Can you help us identify

[visualization-api] Inspiring Lesson | The best time to start that idea is now

2023-03-24 Thread PATRICK OFOSU AGYEMANG
https://youtu.be/v7zepU3D-i4 -- 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...@googlegroups.com. To view this

[visualization-api] sporadical error in chart visualization

2023-03-24 Thread Simone Piccinelli
Hello, We have tried to integrate the googleChart API with our application for displaying Gantt charts. However, we occasionally encounter the error shown in the screenshot in the developer console. This error then resolves itself without any intervention from us. Can you help us identify

Re: [visualization-api] Multiple Line Graph

2023-03-22 Thread André Esterhuizen
This is what i tried but dont work var data = new google.visualization.DataTable(); data.addColumn('date', 'Month'); data.addColumn('number', "Score -"); data.addColumn('date', 'Month'); data.addColumn('number', "Score -"); // data.addColumn('number', "Average Hours

[visualization-api] Multiple Line Graph

2023-03-22 Thread André Esterhuizen
Hi Im using the Line chart and had look at this example https://developers.google.com/chart/interactive/docs/gallery/linechart#dual-y-charts what I need to do is to make the x-axis the current year Y axis 0-300 I want to display current year with dates and marks in blue Then the previous

[visualization-api] Uses of H-axis Ticks with year or time interval like (18-30 Years,)

2023-03-22 Thread Rohit Kumar
I want to use ticks in h-axis . In my graph it is like year or time interval like ( 2001-02 , 2002-03 , 2003-04) or (18-30 Years, 31-40 Years) or (1-4,5-9,10-14) so can you please help me , how we can use this -- You received this message because you are subscribed to the Google Groups

[visualization-api] Google Chart ComboChart with X axis on top

2023-03-21 Thread Pietro Pisanu
I was wondering if you could "move" X axis on top of chart (I'm using a ComboChart). I already tried using: *axes: { x: { 0: { side: 'top'} }}* in options, with no success: the rule ssems to be ignored. Is there another way to achieve this result? -- You received this message because you

Re: [visualization-api] Re: Google Charts New Release Candidate: V52, Feb 20, 2023

2023-03-20 Thread 'Daniel LaLiberte' via Google Visualization API
For some reason I am not yet aware of, this group was blocked for the past week, but at this time it appears to be open again. If you attempt to post but it was rejected, please try again. On Saturday, March 11, 2023 at 5:55:31 PM UTC-5 Daniel LaLiberte wrote: > > > Daniel LaLiberte > 5:35 

Re: [visualization-api] Re: Google Charts New Release Candidate: V52, Feb 20, 2023

2023-03-11 Thread 'Daniel LaLiberte' via Google Visualization API
Daniel LaLiberte 5:35 PM (17 minutes ago) Reply to google-visualization-api I've updated v52 with a fix for the orgchart bug (when the table would have colspans greater than 1000). There are also a large number of changes to the module structure of the code, all to eliminate the "var

[visualization-api] Potential error in stylesheet warning

2023-03-03 Thread Gerry Kroll
I am trying to determine the cause of a Google Charts warning, "Potential error in stylesheet " . The chart type is "bvs" . The warning message occurs no matter which of several similar css stylesheets I am using. The stylesheets have all been validated without error using the W3C CSS

[visualization-api] Spacing between legends item in google-chart

2023-03-02 Thread Shweta Joshi
Hi folks, Please please me out, M using google-chart and want to add spacing between legends and the pie-chart graph, but Now it does not look good. if there is any property to fix the same issue, so please let me know ASAP. I've attached an image of the same for you to look over. -- You

[visualization-api] Spacing between legends items and pie chart

2023-03-02 Thread Shweta Joshi
I've attached an image of the same for you to look over. [image: Screenshot from 2023-03-02 14-45-28.png] -- 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

[visualization-api] Re: Masking Loader.js References for Firewall

2023-03-01 Thread Dennis Frolov
Hey all, Just checking in - is it not possible to mask the domain names in the JS file? For example, the references to https://www.gstatic.com/.. in the file would be changed to https://www.gstatic.com.mydomain.co/ This way, the client would only have to whitelist *.mydomain.co.

Re: [visualization-api] Re: chartRangeFilter, how to use the statechange inProgress property

2023-02-28 Thread Jan Waga
I've tried for a bit to get to 'rangechange' event and failed. Then I've tried to pinpoint charts lib versions as you asked. The 'statechangeevent.inProgress' WORKS correctly in 52, it DOES NOT in 51, 50 and 49, WORKS again in 48. Thanks for your help with this one. poniedziałek, 27 lutego 2023

Re: [visualization-api] Re: chartRangeFilter, how to use the statechange inProgress property

2023-02-27 Thread 'Daniel LaLiberte' via Google Visualization API
There is an internal test of the 'rangechange' event having an inProgress property, but the test was disabled in October 2021, with the comment (by me) that the test seems to not be coordinated with actual events. The 'rangechange' event is not documented, and I don't know exactly what its

[visualization-api] Re: chartRangeFilter, how to use the statechange inProgress property

2023-02-27 Thread Jan Waga
Confirmed, exactly the same problem - https://developers.google.com/chart/interactive/docs/gallery/controls#events_2 docs here says "inProgress" being a property of the ChartRangeFilter StateChangeEvent. Always undefined, thought. Is there a way to tell if a user has finished interacting with

Re: [visualization-api] Abridged summary of google-visualization-api@googlegroups.com - 5 updates in 2 topics

2023-02-24 Thread Mohammad Raju kawsar
Thnks On Wed, 22 Feb 2023, 6:12 am , wrote: > google-visualization-api@googlegroups.com > > Google > Groups > >

Re: [visualization-api] Google charts and typescript

2023-02-23 Thread Nikos Katsikanis
the charts work fine, but it's just not typed. I managed to defeat the tsc error with this hack declare global { interface Window { google: any; } } so there are no problems at runtime On Tuesday, February 21, 2023 at 5:46:56 PM UTC Daniel LaLiberte wrote: > OK, I would like to find a

Re: [visualization-api] Re: Google Charts New Release Candidate: V52, Feb 20, 2023

2023-02-22 Thread 'Daniel LaLiberte' via Google Visualization API
Unfortunately, I did not have time to work on the histogram bug that you pointed out previously. https://github.com/google/google-visualization-issues/issues would be the ideal place to post a bug about this, which you can then track. We have not properly followed up by maintaining this issues

[visualization-api] Re: Google Charts New Release Candidate: V52, Feb 20, 2023

2023-02-22 Thread Emmanuel Schanzer
Hi Daniel - congrats on the new release! Is there a place where we can track open issues, to see if they're resolved? (The histogram-intervals bug is still killing us...) Hopefully the refactoring will allow

[visualization-api] Hovering over label causes it to flicker

2023-02-22 Thread Nikos Katsikanis
You can see this on the home page: https://developers.google.com/chart/ tried with upcoming too [image: Screenshot 2023-02-22 at 10.54.41.png] -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop

[visualization-api] Re: Google Charts New Release Candidate: V52, Feb 20, 2023

2023-02-21 Thread 'Daniel LaLiberte' via Google Visualization API
If you are using both Google Charts and Google Maps in the same document, you might have a problem using the 'upcoming' version. I am seeing a single instance of "var google = {};" in the default package of v52, which is loaded before any other package, or even if no other package is loaded.

Re: [visualization-api] Google charts and typescript

2023-02-21 Thread 'Daniel LaLiberte' via Google Visualization API
OK, I would like to find a workaround for you, while also figuring out what exactly is going wrong. I'll need you to do some experimenting, or if you can give me a link to an example that shows the problem you are experiencing, especially a simplified example using jsfiddle or something similar,

Re: [visualization-api] Google charts and typescript

2023-02-21 Thread Nikos Katsikanis
Thanks for your quick response, we manage this loading, so it only happens once; as we have dynamic routes, we want to load it on only some pages. On Tuesday, February 21, 2023 at 4:23:39 PM UTC Daniel LaLiberte wrote: > The loader has been updated for the 'upcoming' release of v52, but it >

[visualization-api] Google Charts New Release Candidate: V52, Feb 20, 2023

2023-02-20 Thread 'Daniel LaLiberte' via Google Visualization API
Google Charts version '52' is now available. You can use this upcoming version by loading 'upcoming'. Please test the new features and let us know if you experience any issues. google.charts.load('upcoming', {packages: ['corechart']}); This release primarily consists of a large

[visualization-api] Masking Loader.js References for Firewall

2023-02-17 Thread Dennis Frolov
Hey all, On our website, we use the Google Charts API for different pages, and it works great! Thank you for making it. However one of our Clients has very strict firewall settings, and this is causing the Charts to not show up. We have a local version of Loader.js, but within Loader.js there

Re: [visualization-api] Abridged summary of google-visualization-api@googlegroups.com - 1 update in 1 topic

2023-02-16 Thread Mohammad Raju kawsar
No please do not share my information any other device please any group no apply this gmail only redmi 9 power On Tue, 14 Feb 2023, 11:55 pm Mohammad Raju kawsar, < mdabdarabda...@gmail.com> wrote: > Please carry on you > > On Tue, 14 Feb 2023, 6:13 am , > wrote: > >>

Re: [visualization-api] Abridged summary of google-visualization-api@googlegroups.com - 1 update in 1 topic

2023-02-14 Thread Mohammad Raju kawsar
Please carry on you On Tue, 14 Feb 2023, 6:13 am , wrote: > google-visualization-api@googlegroups.com > > Google > Groups >

[visualization-api] Regarding the vertical annotation on the column chart.

2023-02-13 Thread Manjunatha R
Hi Team, Good Afternoon Current project i am working with google charts, How to implement the vertical annotation on the column charts. Please let me know. Thank you -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To

[visualization-api] Podcast invite to Google charts team

2023-02-06 Thread Nikos Katsikanis
Dear google team, I'd love to collaborate on a podcast, my name is Nikos, https://youtube.com/c/QuantumInformation… . Please check out the channel if you would like to discuss this further. -- You received this message because you are subscribed to the Google

[visualization-api] LineChart Duration invalid Date

2023-02-01 Thread Rafael Kaczmarczyk
Hello, I am trying to map a duration as a line chart. Unfortunately I get the error "invalid Date" in the array. JS: var besttimearr = row.besttime.split(":"); var besttimearr2 = besttimearr[1].split("."); var datestr = ', 00, 00, 00, 0' +

[visualization-api] LineChart Duration invalid Date

2023-02-01 Thread Rafael Kaczmarczyk
Hallo, ich versuche eine Dauer als Linien Chart abzubilden. Leider bekomme ich im Array den Fehler "invalid Date". JS: var besttimearr = row.besttime.split(":"); var besttimearr2 = besttimearr[1].split("."); var datestr = ', 00, 00, 00, 0' +

[visualization-api] Gantt Chart Title

2023-01-31 Thread 'Tom Tam' via Google Visualization API
How to set Title property for Gantt Chart Option? The below settings do not work. var options = { title: 'Mock Title', height: 900, gantt: { trackHeight: 30, percentEnabled: false } }; -- *The information contained in this message and any attachment may be privileged, confidential, and

[visualization-api] TypeError: google.visualization.Map is not a constructor

2023-01-20 Thread Shashank Raghavendra
Hey everyone, I keep getting the error "TypeError: google.visualization.Map is not a constructor" when I am trying to render a Map. However when I change to google.visualization.GeoChart this error goes away. I have gone through several sites trying to find an answer for this but to no

[visualization-api] I want to show value on top of bar

2023-01-18 Thread Smith Star
I have drwan multi bar chart ,what is option to show value on each bar image attached -- 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

Re: [visualization-api] Option to toggle accessibility table

2023-01-16 Thread Jan Waga
Hi all. Is there any news on the possibility of turning off accessibility table generation? I can see a thread here called "Tips to get better performance?" from 2015, where such option was discussed :) It seems this would be a usable feature when dealing with large data quantities. Thanks.

[visualization-api] Editing tooltips without overwriting (and how to get rid of stacked-bar %)

2023-01-11 Thread Geoffrey Palmer
Hi folks, I'm looking for ways to modify the default tool tips, especially with a stacked-bar-percentage which seems to always add a "(xx%) to all tooltips that I can't get rid of. By default , tooltips

[visualization-api] Line chart is cut off when lineWidth is greater than 1

2022-12-21 Thread Phúc Nguyễn
Hi all, I have an issue with Google Line Chart. When I try to configure the lineWidth property of the line chart, I notice that a part of the line is cut off. This issue does not occur when lineWidth = 1. Is there any way to make the line fully displayed without changing the max and the min

Re: [visualization-api] Re: How to have the Y axis labels show both Celsius and Fahrenheit in a line chart

2022-12-20 Thread 'Ray Thomas' via Google Visualization API
Here's what I came up with: // Load Charts and the corechart package. google.charts.load('current', {'packages':['corechart']}); google.charts.setOnLoadCallback(drawChart); function drawChart() { var queryString = encodeURIComponent('SELECT A,B ORDER BY A'); var

Re: [visualization-api] Re: How to have the Y axis labels show both Celsius and Fahrenheit in a line chart

2022-12-18 Thread 'Ray Thomas' via Google Visualization API
Thanks Daniel, I've just been reading this https://github.com/google/google-visualization-issues/issues/1769 about this very thing. On Sunday, December 18, 2022 at 6:34:49 PM UTC-5 dlali...@google.com wrote: > You'll have to set the viewWindow min and max values of one axis so that > it

[visualization-api] Re: How to have the Y axis labels show both Celsius and Fahrenheit in a line chart

2022-12-18 Thread 'Ray Thomas' via Google Visualization API
It doesn't work properly! I used // Load Charts and the corechart package. google.charts.load('current', {'packages':['corechart']}); google.charts.setOnLoadCallback(drawChart); function drawChart() { var queryString = encodeURIComponent('SELECT A,B ORDER BY A');

[visualization-api] Re: How to have the Y axis labels show both Celsius and Fahrenheit in a line chart

2022-12-18 Thread 'Ray Thomas' via Google Visualization API
This does not work as I thought it might. I used: // Load Charts and the corechart and barchart packages. google.charts.load('current', {'packages':['corechart']}); // Draw the pie chart and bar chart when Charts is loaded. google.charts.setOnLoadCallback(drawChart);

[visualization-api] Re: How to have the Y axis labels show both Celsius and Fahrenheit in a line chart

2022-12-16 Thread 'Ray Thomas' via Google Visualization API
I don't think you can do exactly what you want to do because the scale and grid markers are calculated by the API. But what you could do is add a calculated column either in the original data or create it before the API processes the data, that contains the fahrenheit values and display that

[visualization-api] How to have the Y axis labels show both Celsius and Fahrenheit in a line chart

2022-12-14 Thread Gabriel Peterson
I'm using the line chart and having some trouble formatting the y-axis grid markers. The data provided is stored in Celsius, but I'd like the labels on the left to also show Fahrenheit. For example one of the markers is showing 22, but I'd like it to show something like 22 / 71.6. This is my

[visualization-api] Slight problem With charts eating up memory

2022-12-14 Thread Bram Bakker
I am currently working on a website that is going to use google charts, or something alike, to get data from a broker and plot this data as as fast as it can. When I start the connection with the broker I see the data being plotted fine almost as fast as the broker has the data, so this works

[visualization-api] need a freelancer for GeoChart Visualization in my project

2022-12-14 Thread Title Today
Hi, I am looking for an expert in Visualization:GeoChart for my project as a freelancer. Please feel free to discuss. Nick Joshi -- You received this message because you are subscribed to the Google Groups "Google

Re: [visualization-api] Queries giving error only on Mobile Devices

2022-12-13 Thread Avadhoot Dandekar
Thanks, Ray and Daniel. Thanks again!! On Tuesday, 13 December 2022 at 01:25:06 UTC+5:30 Ray Thomas wrote: > As far as I know, the best solution that works is to just use one ID. But, > https://developers.google.com/apps-script/guides/projects also has this: > > >- Open an incognito window

Re: [visualization-api] Queries giving error only on Mobile Devices

2022-12-12 Thread 'Ray Thomas' via Google Visualization API
As far as I know, the best solution that works is to just use one ID. But, https://developers.google.com/apps-script/guides/projects also has this: - Open an incognito window in Google Chrome, or an equivalent private browsing window, and log in to the Google Account that has the Apps

Re: [visualization-api] Queries giving error only on Mobile Devices

2022-12-12 Thread Avadhoot Dandekar
Yes, Ray. You are right. I have diagnosed the issue and found that when I use two user IDs in the same browser it gives an error. The same query works on the desktop browser. And the same query works on some other browsers. So script.google.com does not work with multiple IDs. But I am talking

<    1   2   3   4   5   6   7   8   9   10   >