Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-10-13 Thread natarajan govindavel
Hi sergey, I want to make one code behind method should return google chart as response. Can we do that? Thanks Natarajan Govindavel. On Thursday, March 10, 2016 at 8:13:18 PM UTC+5:30, Sergey wrote: > > Natarajan, > > As I've said in an earlier email, you should only include /jsapi if you >

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-07-27 Thread natarajan govindavel
hi, Can we use tooltip *selection *and *hover *on piechart ? selection for showing details hover for count and percent. Thanks Natarajan On Tuesday, May 31, 2016 at 3:42:56 PM UTC+5:30, natarajan govindavel wrote: > > hi, > > Do we have option to sort the records based on time in Gantt Chart?

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-05-31 Thread natarajan govindavel
hi, Do we have option to sort the records based on time in Gantt Chart? Thanks NG On Friday, May 20, 2016 at 4:29:07 PM UTC+5:30, Daniel LaLiberte wrote: > > You'll want a format like this: "#.#". > > Many of the options don't apply to material charts, as noted in the > documentation. > >

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-05-20 Thread 'Daniel LaLiberte' via Google Visualization API
You'll want a format like this: "#.#". Many of the options don't apply to material charts, as noted in the documentation. The Material Charts are in *beta*. The appearance and interactivity are largely final, but many of the options available in Classic Charts are not yet available in them.

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-05-20 Thread natarajan govindavel
Thank you so much for your help Mr. Daniel LaLiberte. *i have one more clarification.* Can you please tell me how to scaling X axis value to whole numbers now showing 0 >> 0.2 >> 0.4 >> 0.6 >> 0.8 >> 1 Instead of that i want to show like this. 0 >> 1 I have tried with format : '0' option .

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-04-28 Thread 'Daniel LaLiberte' via Google Visualization API
The bar.groupWidth option is not working correctly with the Material charts. Sorry. I will add it to the list. On Thu, Apr 28, 2016 at 11:13 AM, natarajan govindavel < natarajan...@gmail.com> wrote: > Hi, > bar.groupWidth property not working Especially bar chart having single. > Is there any

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-04-28 Thread natarajan govindavel
Hi, bar.groupWidth property not working Especially bar chart having single. Is there any workaround for this? Thanks Natarajan Govindavel. On Thursday, March 10, 2016 at 8:13:18 PM UTC+5:30, Sergey wrote: > > Natarajan, > > As I've said in an earlier email, you should only include /jsapi if you

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-04-27 Thread natarajan govindavel
Hi Sergey, I want to fix the bar width in Bar chart and i am using Material chart. the below mentioned code not working for me. Options = { width: '100%', height: '100%', bar:

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-10 Thread natarajan govindavel
Working fine. you are rocks sergey Thanks Natarajan Govindavel On Thursday, March 10, 2016 at 8:13:18 PM UTC+5:30, Sergey wrote: > > Natarajan, > > As I've said in an earlier email, you should only include /jsapi if you > use a GeoChart, and it doesn't appear that you do, so you should not >

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-10 Thread 'Sergey Grabkovsky' via Google Visualization API
Natarajan, As I've said in an earlier email, you should only include /jsapi if you use a GeoChart, and it doesn't appear that you do, so you should not include it at all. Remember, that with the new loader, you need to do: google.*charts*.load and google.*charts*.setOnLoadCallback. On Thu, Mar

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-10 Thread natarajan govindavel
> > Hi Sergey, > > I tried your solution which is working fine in Firefox and Chrome but Not > in IE (checked with IE10,IE9,IE8,IE7). > It produce same issue . SCRIPT5007: Unable to get property > 'arrayToDataTable' of undefined or null reference. > I am using both classical and material

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-10 Thread natarajan govindavel
> > Hi Sergey, > > I tried your solution which is working fine in Firefox and Chrome but Not > in IE (checked with IE10,IE9,IE8,IE7). > It produce same issue . SCRIPT5007: Unable to get property > 'arrayToDataTable' of undefined or null reference. > I am using both classical and material

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-10 Thread natarajan govindavel
Hi Sergey, I tried your solution which is working fine in Firefox and Chrome but Not in IE (checked with IE10,IE9,IE8,IE7). It produce same issue . SCRIPT5007: Unable to get property 'arrayToDataTable' of undefined or null reference. Thanks Natarajan On Tuesday, March 8, 2016 at

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-08 Thread 'Sergey Grabkovsky' via Google Visualization API
It sounds like you're not putting your chart code into a callback. That is, you're probably doing something like: var data = google.visualization.arrayToDataTable(...); // more chart stuff When you should be doing: ... google.charts.load(...); google.charts.setOnLoadCallback(drawChart);

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-07 Thread natarajan govindavel
Hi Sergey, If i remove jsapi loader code as you said i faced the following issue. https://www.gstatic.com/charts/loader.js";> <%-- https://www.google.com/jsapi?autoload={ 'modules':[{ 'name':'visualization', 'version':'1.1',

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-07 Thread 'Sergey Grabkovsky' via Google Visualization API
Natarajan, *Please do not use autoload and the gstatic loader on the same page*. This can lead to issues that are very difficult to figure out. The gstatic loader is the only place where we're pushing new versions at this point. Loading jsapi as well will cause older versions to be loaded. The

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-07 Thread natarajan govindavel
I forget to mention one thing. The below given chart is material chart. On Monday, March 7, 2016 at 5:02:37 PM UTC+5:30, natarajan govindavel wrote: > > Hi Sergey, > > Thank so much for your support. Almost fixed all the issues except one. > Is their anyway to hiding these (highlighted)

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-07 Thread natarajan govindavel
Hi Sergey, I am using the Visualization (classical) and Material Chart on the same page. As mention below. https://www.google.com/jsapi?autoload={ 'modules':[{ 'name':'visualization', 'version':'1.1',

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-07 Thread natarajan govindavel
Hi Sergey, Thank so much for your support. Almost fixed all the issues except one. Is their anyway to hiding these (highlighted) supplementary axis from the chart. Thanks Natarajan

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-24 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Natarajan, You should be able to use html2canvas to save the charts as images, as the stackoverflow post suggests. You may be aware that some of our charts (like ComboChart and the rest of the charts provided by the 'corechart' package) support getImageUri, which will basically allow you to

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-24 Thread natarajan govindavel
Hi Sergey, Is there any other way to save material chart as images. like given in that link : http://stackoverflow.com/questions/6887183/how-to-take-screen-shot-of-a-div-with-javascript Thanks Natarajan Govidavel On Friday, February 19, 2016 at 8:43:59 PM UTC+5:30, Sergey wrote: > > So I

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-19 Thread 'Sergey Grabkovsky' via Google Visualization API
So I don't see anything obviously wrong with your code. Could you link to a page on which you're experiencing the error? If you're uncomfortable sharing the link over the forum, feel free to send me a private message. On Fri, Feb 19, 2016 at 8:47 AM natarajan govindavel

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-19 Thread natarajan govindavel
Hi sergey, I have seen below mentioned issue in browser console Error: one or more fonts could not be loaded. In FireFox (44.0.2) this issue happen more frequently. And I checked with the link https://groups.google.com/forum/#!topic/google-visualization-api/bSJLBO_fm2w so i changed from

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-16 Thread 'Sergey Grabkovsky' via Google Visualization API
Natarajan, We've seen a number of bugs with multiple Material charts not rendering on the same page. I was under the impression that these issues were all fixed (presuming you're using the latest Charts code). It is highly likely that the issues are due to *how* you're using Charts, and not due

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-15 Thread natarajan govindavel
Hi Sergey, I have dynamically loading multiple charts in same page using jquery and ajax. Sometimes ( not frequent and random manner ) some of the charts not displayed. Is this known issue? Is there any workaround for this. Please guide me. Thanks Natarajan Govindavel On Monday, February 1,

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-01 Thread natarajan govindavel
Hi Sergey, I have multiple charts on the same page.Everything working fine one of the chart bar color not applied properly. It shows the default color(blue). I faced this issue only in IE 9 and IE 10. i given my code below. please advice me var chartnew = new

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-01-29 Thread 'Sergey Grabkovsky' via Google Visualization API
I don't have any estimates for when you might expect getImageURI for Material Charts. We are currently prioritizing other features. On Fri, Jan 29, 2016 at 1:46 AM natarajan govindavel wrote: > Hi Sergey, > > Thank you so much for your help. And one more help > When can

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-01-29 Thread 'Sergey Grabkovsky' via Google Visualization API
Forgot to answer the second part of your question, about the jsfiddle. If you're asking whether the Classic Charts support axis formatting options, they do: https://jsfiddle.net/88z92w4p/ On Fri, Jan 29, 2016 at 10:03 AM Sergey Grabkovsky wrote: > I don't have any estimates

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-01-28 Thread natarajan govindavel
Hi Sergey, Thank you so much for your help. And one more help When can we expect this feature (getImageURI()) because one of my client really want this. Can we do this kind dynamic charts in Classical Chart(ref below)? https://jsfiddle.net/vqaLpc23/ Thanks Natarajan On Thursday, January 28,

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-01-28 Thread natarajan govindavel
Hi Sergey, Do we have Export Option in Material Chart? Can we do this kind dynamic charts in Classical Chart(ref below)? https://jsfiddle.net/api/post/library/pure/ Thanks Natarajan Govindavel On Monday, January 25, 2016 at 9:01:05 PM UTC+5:30, Sergey wrote: > > Hi Natarajan, > > The issue you

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-01-28 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Natarajan, Your jsfiddle link doesn't link to your jsfiddle (it just links to an empty fiddle). You need to save your fiddle before it gives you a valid link. Presumably, you're talking about .getImageURI(), which is not supported for Material Charts. On Thu, Jan 28, 2016 at 6:28 AM natarajan

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-01-25 Thread natarajan govindavel
Hi Sergey, Thank you for your reply. I have one more problem. The Chart inside the tab which is not active(div display:none). The chart not displayed properly. If i make it visibility : Hidden/Visible it is rendering properly but shows lot of empty space in the page. Is this issue resolved? Any

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-01-25 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Natarajan, The issue you are talking about now is a known issue. There are known issues with text measurement with invisible divs. The recommended workaround is to delay the chart rendering until the div becomes visible. On Mon, Jan 25, 2016 at 10:09 AM natarajan govindavel <

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-01-22 Thread natarajan govindavel
Hi Sergey, Thanks you so much for your quick response. dataArray[2] is a type of DataTable only and which is generated dynamically from code behind. And one more clarification is legend position supported by Material Charts? Anyway i going to refer that link which is given by you. Please add

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-01-22 Thread 'Sergey Grabkovsky' via Google Visualization API
The Material Charts support putting the legend on the right or the left, but not on top or bottom. On Fri, Jan 22, 2016 at 3:53 AM natarajan govindavel wrote: > Hi Sergey, > > Thanks you so much for your quick response. > dataArray[2] is a type of DataTable only and

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-01-21 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Natarajan, The first difference between the two is that the latter is a combo chart. This means that it supports multiple series types, like line, scatter, bar, and candlestick; where the first chart (google.charts.Bar) only supports bars. The second difference is that google.charts.Bar is a