[visualization-api] Gauge Chart doesn't works with ng-repeat

2021-02-09 Thread Monica Fontalva
I'm using ng-repeat on a container class, and after that, need 2 gauge 
charts.
The charts do not appear in the requested container.

-- 
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 discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/0014279f-8ad5-45ca-a0b9-69dac035b53an%40googlegroups.com.


[visualization-api] Gauge Chart from Google Sheets appears to be rendering double... re-size chart makes it obvious!

2019-06-05 Thread Brian Cunningham
We've had these charts working properly for a long time... now they appear 
to be rendering double.

This is the intended look... but not visible in this view is the amount of 
whitespace to the right of the charts...

But to resize this (moving the sizing handles) shows a background image of 
the gauges which does not re-size underneath another set up gauges which 
*do* resize


Any clues on what's going on ?  Or better yet... how to fix (without having 
to fix every set of gauges that we have already set up)?



-- 
PLEASE NOTE
The information in this E-Mail message is legally privileged 
and confidential information intended only for the use of the individual(s) 
named above.  If you, the reader of this message, are not the intended 
recipient, you are hereby notified that you should not further disseminate, 
distribute, or forward this E-mail message.  If you have received this 
E-mail in error, please notify the sender. Thank you!

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/db9ecf5b-5b72-4f11-acca-8a0198c9aaf0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Gauge chart doesn't showm up with other charts.

2017-02-27 Thread Szymon Chomej
Gauge chart doesn't show up with other charts on the same page.
It only works alone.

This is my code:













';

}
?>

  

// Load the Visualization API and the package.
google.charts.load('current', {'packages':['corechart']});

// Set a callback to run when the Google Visualization API is loaded.
google.charts.
setOnLoadCallback(drawLineChart);
// Set a callback to run when the Google Visualization API is loaded.
google.charts.setOnLoadCallback(drawPieChart);



function drawLineChart() {

  var jsonData = $.ajax({
  url: "dane.json",
 dataType: "json",
 async: false
 }).responseText;

  var options = {
'title':'Wilgotność Początkowa VS Wilgotność Końcowa',

 hAxis: {
  title: 'Data - Godzina',
  textStyle: {
color: '#1a237e',
fontSize: 12,
bold: true
  },
  titleTextStyle: {
color: '#1a237e',
fontSize: 14,
bold: true
  }
},
vAxis: {
  title: 'Wilgotność %',
  textStyle: {
color: '#1a237e',
fontSize: 12,
bold: true
  },
  titleTextStyle: {
color: '#1a237e',
fontSize: 14,
bold: true
  }
}

  };


  // Create our data table out of JSON data loaded from server.
 var data = new google.visualization.DataTable(jsonData);

  // Instantiate and draw our chart, passing in some options.
  var chart = new 
google.visualization.LineChart(document.getElementById('chart_div'));
  chart.draw(data,  options);
}

function drawPieChart() {

  var jsonData = $.ajax({
  url: "dane2.json",
 dataType: "json",
 async: false
 }).responseText;

 var options = {
title:'Straty Towaru w %',
pieHole: 0.4,
slices: {
0: { color: 'red' },
1: { color: 'blue' },
2: { color: 'orange' }
  }

  };



  // Create our data table out of JSON data loaded from server.
 var data = new google.visualization.DataTable(jsonData);

  // Instantiate and draw our chart, passing in some options.
  var chart = new 
google.visualization.PieChart(document.getElementById('chart_div2'));
  chart.draw(data,  options);

}

// Load the Visualization API and the package.
google.charts.load('current',  {'packages':['gauge']});
// Set a callback to run when the Google Visualization API is loaded.
google.charts.setOnLoadCallback(drawGaugeChart);

function drawGaugeChart() {

var data = google.visualization.arrayToDataTable([
  ['Label', 'Value'],
  ['Memory', 80]
]);

var options = {
  width: 400, height: 120,
  redFrom: 90, redTo: 100,
  yellowFrom:75, yellowTo: 90,
  minorTicks: 5
};

var chart = new 
google.visualization.Gauge(document.getElementById('chart_div3'));

chart.draw(data, options);

setInterval(function() {
  data.setValue(0, 1, 40 + Math.round(60 * Math.random()));
  chart.draw(data, options);
}, 13000);

  }





Does anyone know wher is the problem?

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/c8d59ca8-5529-4246-823c-e9731ad53ab3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Gauge chart with other type of charts

2017-02-27 Thread Szymon Chomej
Gauge chart doesn't show up with other charts on the same page.
It only works alone.

This is my code:

if ($_POST['wczytaj']) {

  echo '












';

}
?>

  

// Load the Visualization API and the package.
google.charts.load('current', {'packages':['corechart']});

// Set a callback to run when the Google Visualization API is loaded.
google.charts.setOnLoadCallback(drawLineChart);
// Set a callback to run when the Google Visualization API is loaded.
google.charts.setOnLoadCallback(drawPieChart);



function drawLineChart() {

  var jsonData = $.ajax({
  url: "dane.json",
 dataType: "json",
 async: false
 }).responseText;

  var options = {
'title':'Wilgotność Początkowa VS Wilgotność Końcowa',

 hAxis: {
  title: 'Data - Godzina',
  textStyle: {
color: '#1a237e',
fontSize: 12,
bold: true
  },
  titleTextStyle: {
color: '#1a237e',
fontSize: 14,
bold: true
  }
},
vAxis: {
  title: 'Wilgotność %',
  textStyle: {
color: '#1a237e',
fontSize: 12,
bold: true
  },
  titleTextStyle: {
color: '#1a237e',
fontSize: 14,
bold: true
  }
}

  };


  // Create our data table out of JSON data loaded from server.
 var data = new google.visualization.DataTable(jsonData);

  // Instantiate and draw our chart, passing in some options.
  var chart = new 
google.visualization.LineChart(document.getElementById('chart_div'));
  chart.draw(data,  options);
}

function drawPieChart() {

  var jsonData = $.ajax({
  url: "dane2.json",
 dataType: "json",
 async: false
 }).responseText;

 var options = {
title:'Straty Towaru w %',
pieHole: 0.4,
slices: {
0: { color: 'red' },
1: { color: 'blue' },
2: { color: 'orange' }
  }

  };



  // Create our data table out of JSON data loaded from server.
 var data = new google.visualization.DataTable(jsonData);

  // Instantiate and draw our chart, passing in some options.
  var chart = new 
google.visualization.PieChart(document.getElementById('chart_div2'));
  chart.draw(data,  options);

}

// Load the Visualization API and the package.
google.charts.load('current',  {'packages':['gauge']});
// Set a callback to run when the Google Visualization API is loaded.
google.charts.setOnLoadCallback(drawGaugeChart);

function drawGaugeChart() {

var data = google.visualization.arrayToDataTable([
  ['Label', 'Value'],
  ['Memory', 80]
]);

var options = {
  width: 400, height: 120,
  redFrom: 90, redTo: 100,
  yellowFrom:75, yellowTo: 90,
  minorTicks: 5
};

var chart = new 
google.visualization.Gauge(document.getElementById('chart_div3'));

chart.draw(data, options);

setInterval(function() {
  data.setValue(0, 1, 40 + Math.round(60 * Math.random()));
  chart.draw(data, options);
}, 13000);

  }





Does anyone know wher is the problem?

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/bff38ab1-a319-4f18-8c34-a71c0c7453b1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Gauge Chart with another Charts

2017-02-20 Thread Gustavo L. Moraes
Hi...

How can I?

*Only show the first two:*


 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> 
 http://www.w3.org/1999/xhtml";> 
  
  
 Dashboard Diretoria - RG Sertal 
 
  
 // Identificando o Navegador 
 if (navigator.userAgent.indexOf("Chrome") == -1) { 
 alert("Sistema melhor visualizado com o navegador Google Chrome!") 
 } 
  
 https://www.gstatic.com/charts/loader.js";> 
  
 google.charts.load('current', {'packages':['corechart']}); 
  
  
  
  
 Intranet RG Sertal | gustavolm (http://192.168.0.254/logoff.php>">Logoff) | http://192.168.0.254/>">Home > http://192.168.0.254/diretoria>">Diretoria 
  
 Dashboard Diretoria v1.3a 
  
  
 google.charts.setOnLoadCallback(drawChartIndVen1); 
 
 function drawChartIndVen1() { 
 var dataIndVen1 = new google.visualization.DataTable(); 
 dataIndVen1.addColumn('string', 'Meses'); 
 dataIndVen1.addColumn('number', '2015'); 
 dataIndVen1.addColumn('number', '2016'); 
 dataIndVen1.addColumn('number', '2017'); 
 
 dataIndVen1.addRows([ 
 ['Jan', 3901428.72, 5855138.6, 5295955.79], 
 ['Fev', 2388684.2, 3312024.61, 3085403.61], 
 ['Mar', 1785722.73, 2324835.5, 0], 
 ['Abr', 1225221.18, 1877999.5, 0], 
 ['Mai', 3044741.35, 2725591.06, 0], 
 ['Jun', 1404971.06, 1258493.09, 0], 
 ['Jul', 1232387.38, 1829191.74, 0], 
 ['Ago', 670914.24, 1915027.29, 0], 
 ['Set', 1948617.11, 1269937.39, 0], 
 ['Out', 6584288.18, 2221001.78, 0], 
 ['Nov', 2429157.62, 2507720.53, 0], 
 ['Dez', 2836858.15, 3682925.44, 0], 
 ]); 
 
 var optionsIndVen1 = { 
 title : 'VENDAS - Últimos três anos (Pedidos)', 
 width : 800, 
 height: 400, 
 hAxis: { 
 title: 'Meses', 
 }, 
 vAxis: { 
 title: 'Valores' 
 } 
 }; 
 
 var chartIndVen1 = new google.visualization.ColumnChart(document.
getElementById('grafIndVen1')); 
 chartIndVen1.draw(dataIndVen1, optionsIndVen1); 
 } 
  
 
  
 google.charts.setOnLoadCallback(drawChartIndCom1); 
 
 function drawChartIndCom1() { 
 var dataIndCom1 = google.visualization.arrayToDataTable([ 
 ['Mês','Admin.','Fábrica', { role: 'annotation' } ], 
 ['Mar/16', 200583.32, 1916029.86, ''], 
 ['Abr/16', 165589.34, 1195797.23, ''], 
 ['Mai/16', 261948.36, 814559.5, ''], 
 ['Jun/16', 304661.1, 616660.14, ''], 
 ['Jul/16', 213397.77, 546578.68, ''], 
 ['Ago/16', 217692.27, 614634.23, ''], 
 ['Set/16', 213541.38, 551403.24, ''], 
 ['Out/16', 166674.22, 548468.76, ''], 
 ['Nov/16', 193142.92, 738004.52, ''], 
 ['Dez/16', 198255.84, 689344.66, ''], 
 ['Jan/17', 159525.24, 1073695.08, ''], 
 ['Fev/17', 110566.58, 409984.33, ''] 
 ]); 
 
 var optionsIndCom1 = { 
 title : 'COMPRAS - Valor comprado nos últimos 12 meses (NF)', 
 width : 800, 
 height: 400, 
 bar: { groupWidth: '75%' }, 
 isStacked: true, 
 hAxis: { 
 title: 'Meses', 
 }, 
 vAxis: { 
 title: 'Valores' 
 } 
 }; 
 
 var chartIndCom1 = new google.visualization.ColumnChart(document.
getElementById('grafIndCom1')); 
 chartIndCom1.draw(dataIndCom1, optionsIndCom1); 
 
 } 
  
 
  
 google.charts.setOnLoadCallback(drawChartIndCon1); 
 function drawChartIndCon1() { 
 
 var dataIndCon1 = google.visualization.arrayToDataTable([ 
 ['Label', 'Value'], 
 ['Memory', 80], 
 ['CPU', 55], 
 ['Network', 68] 
 ]); 
 
 var optionsIndCon1 = { 
 width: 400, height: 120, 
 redFrom: 90, redTo: 100, 
 yellowFrom:75, yellowTo: 90, 
 minorTicks: 5 
 }; 
 
 var chartIndCon1 = new google.visualization.Gauge(document.getElementById(
'grafIndCon1')); 
 
 chartIndCon1.draw(dataIndCon1, optionsIndCon1); 
 
 } 
  
 
  
  
  
  
  
  
 

Thank you!

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/fc6387ab-8fb8-42e4-80ed-f216e20e6a41%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Gauge Chart

2016-11-02 Thread Valerio Montalbano
I don't see the Method "getImageURI()" for Gauge Chart!

How can I get the image of a Gauge Chart to work it in another routine 
(i.e. print PDF)?

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/123189b9-d787-45ef-94fd-0a124deb74e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Gauge Chart Showing Percentage - Want replica like Highcharts

2015-12-11 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Manoj,

The Google Charts Gauge chart is very limited in its styling, and we are
not updating it any time soon.  We'll probably replace it entirely at some
point.  In the meantime, you might get better results using the PieChart
with the Donut-related options. See:
https://developers.google.com/chart/interactive/docs/gallery/piechart#donut

On Fri, Dec 11, 2015 at 2:12 AM, Manoj Sethi  wrote:

> Hello All,
> We are moving our application from HighCharts to Google charts. I am
> facing issue for creating a similar UI like below. I am using Gauge Chart
> from HighCharts library.Please suggest how to achieve the same in Google
> Charts.
>
>
> 
>
> Thanks
> Manoj
>
> --
> 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 post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> http://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/f3793c1e-7a96-4385-99d1-15feff84d778%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Daniel LaLiberte 
dlalibe...@google.com5CC, Cambridge MA

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at http://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJMKYCZY5X9OHw-fuGMfr0OoCYdBaGo1PV47ROzAUaTaKg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Gauge Chart Showing Percentage - Want replica like Highcharts

2015-12-10 Thread Manoj Sethi
Hello All, 
We are moving our application from HighCharts to Google charts. I am facing 
issue for creating a similar UI like below. I am using Gauge Chart from 
HighCharts library.Please suggest how to achieve the same in Google Charts.



Thanks
Manoj

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at http://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/f3793c1e-7a96-4385-99d1-15feff84d778%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Gauge chart : more color

2015-04-30 Thread 'Jon Orwant' via Google Visualization API
Frank, you can choose the colors you want; see
https://developers.google.com/chart/interactive/docs/gallery/gauge#Configuration_Options
.

The chart assumes three colors; to add more, we'd need to come up with a
new graphic design.

Jon

On Sat, Apr 25, 2015 at 2:15 PM, Franck BECKER 
wrote:

> Hello,
>
> Actually, only 3 colors are possible on a "Gauge Chart" (Red, Orange,
> Green).
>
> Why not more color ???
>
> Why we can't choose the number of colors, and choose the colors tahn wew
> want (blue, black, etc...)
>
> Thank you
>
> Franck
>
> --
> 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 post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> http://groups.google.com/group/google-visualization-api.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Gauge chart : more color

2015-04-25 Thread Franck BECKER
Hello,

Actually, only 3 colors are possible on a "Gauge Chart" (Red, Orange, 
Green). 

Why not more color ???

Why we can't choose the number of colors, and choose the colors tahn wew 
want (blue, black, etc...)

Thank you

Franck

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Gauge Chart: How do I add an IF query to choose between variables?

2014-10-05 Thread Bevan
Hello,
using ASP.net webpage with Razor syntax cshtml.

I want to make the gauge colour follow the needle. I did this easily 
enough, but if the value is less than 0, the color fills the gauge.

What I need is to be able to tell it to first check if the value is below 
0, and if it is, return 0.
I have this: 

> var colorZone = if { @thisWeek < 0,0, @thisWeek };
>
> It doesn't work. 
As you can see, i want a var to be the greater of 0 or input value.
@thisWeek is a variable from the SQL queries higher up in the page.

I'm obviously doing something wrong here - please point me in the right 
direction :) 

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Gauge Chart animation doesn't seem to work.

2014-10-02 Thread Bevan
Hello.

In the options part for a Gauge Chart, I have this:

var options = {
>   width: 400, height: 400,
>   greenFrom: 0, greenTo: sales,
>   minorTicks: 5, max: dayTarget
>   
> };


That works fine.

If I want to add animation, the docs say to use *animation.easing: 'out'* 
to make it slow down at the end. Instead, the gauge simply fails to render.

What am I doing wrong?

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Gauge Chart - How to format the legend value

2014-09-29 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Bevan, you were on the right track. You just need to specify the full
string value that you want to show up. I'm not sure what "C" was supposed
to mean in your context, but that would just make the letter "C" show up
instead of your value. You'd need to specify it as "$12.34". Here's an
example of how to do that: http://jsfiddle.net/u1bgkq66/

On Sun Sep 28 2014 at 9:32:40 PM Bevan  wrote:

> Hello,
>
> I have the following:
>
>> 

[visualization-api] Gauge Chart - How to format the legend value

2014-09-28 Thread Bevan
Hello,

I have the following:

> 

[visualization-api] Gauge chart

2013-12-11 Thread Qurat Haider
hi, i am using Google gauge chart and it is working fine. i want semi gauge 
chart and i also want to change the color of the chart. how can i do this? 

-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.


[visualization-api] Gauge Chart and color Sections

2013-04-13 Thread Blaine Carmichael

I was looking at the example of the Gauge Chart. It is using 3 different 
color sections. I would like to use 6 different color sections, is it 
possible?


-- 
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 post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[visualization-api] Gauge chart ---> Increasing the space between gauge chart.

2013-03-18 Thread Nikhil Agrawal
Hi,

I am using google gauge chart , but the charts appears very close to each 
other. I there any way i can adjust the space between this chart ??


Awaiting a response. 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...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [visualization-api] Gauge chart not working in IE9

2012-08-14 Thread Jinji
It does work for me... Did you make sure IE is in "standards mode"? You
might be able to achieve that either using IE's UI, or by specifying
 at the top of your HTML.

On Tue, Aug 14, 2012 at 10:56 AM, Harinath Chakrapani
wrote:

> Hi All,
>
> I have used Gauge Chart for my prototype project.  Now tomorrows demo
> would be given on a laptop with IE9.
>
> In last minute i found its not working with IE9.
> Any workaround can same my head.
>
> Google guys please help me!!!
>
> --
> 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/-/uTRuF_alhZQJ.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> To unsubscribe from this group, send email to
> google-visualization-api+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-visualization-api?hl=en.
>
>

-- 
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 
google-visualization-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.



[visualization-api] Gauge chart not working in IE9

2012-08-14 Thread Harinath Chakrapani
Hi All,

I have used Gauge Chart for my prototype project.  Now tomorrows demo would be 
given on a laptop with IE9.  

In last minute i found its not working with IE9.  
Any workaround can same my head.

Google guys please help me!!!

-- 
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/-/uTRuF_alhZQJ.
To post to this group, send email to google-visualization-api@googlegroups.com.
To unsubscribe from this group, send email to 
google-visualization-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.



Re: [visualization-api] Gauge Chart loses format

2011-08-02 Thread Viz Kid
Thanks for the report, this is indeed a bug and we will look into it.

  Viz Kid

On Fri, Jul 29, 2011 at 6:37 AM, Chrétien M.  wrote:

> Hey!
>
> Is there a way to avoid gauge chart losing numberFormat while it's
> value is updated with motion?
>
> Here is an example:
>
> function drawGauge() {
>var data = new google.visualization.DataTable();
>data.addColumn('string', 'Label');
>data.addColumn('number', 'Value');
>data.addRows(1);
> data.setValue(0, 0, 'Google');
> data.setValue(0, 1, 0);
>
>var formatter = new
> google.visualization.NumberFormat({fractionDigits: 0,suffix: '%'});
>formatter.format(data, 1);
>
> var gaugeChart = new
> google.visualization.Gauge(document.getElementById('gaugeChart'));
>var options = {width: 100, height: 100, minorTicks: 5};
>
>gaugeChart.draw(data, options);
>
>setInterval(function(){
>data.setValue(0, 1, 24);
>formatter.format(data, 1);
>gaugeChart.draw(data, options);
>}, 1000);
> }
>
> After the setInterval update, the suffix '%' disappear!
>
> Any idea?
>
> Thanks
>
> --
> 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
> google-visualization-api+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-visualization-api?hl=en.
>
>

-- 
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 
google-visualization-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.



[visualization-api] Gauge Chart loses format

2011-07-28 Thread Chrétien M .
Hey!

Is there a way to avoid gauge chart losing numberFormat while it's
value is updated with motion?

Here is an example:

function drawGauge() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Label');
data.addColumn('number', 'Value');
data.addRows(1);
data.setValue(0, 0, 'Google');
data.setValue(0, 1, 0);

var formatter = new
google.visualization.NumberFormat({fractionDigits: 0,suffix: '%'});
formatter.format(data, 1);

var gaugeChart = new
google.visualization.Gauge(document.getElementById('gaugeChart'));
var options = {width: 100, height: 100, minorTicks: 5};

gaugeChart.draw(data, options);

setInterval(function(){
data.setValue(0, 1, 24);
formatter.format(data, 1);
gaugeChart.draw(data, options);
}, 1000);
}

After the setInterval update, the suffix '%' disappear!

Any idea?

Thanks

-- 
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 
google-visualization-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.



[visualization-api] Gauge Chart loses format

2011-07-28 Thread Chrétien M .
Hey,

Is there a way to avoid gauge chart losing numberFormat while the
value is updated with motion?
Here is an example:

function drawGauge() {
   var data = new google.visualization.DataTable();
   data.addColumn('string', 'Label');
data.addColumn('number', 'Value');
data.addRows(1);
data.setValue(0, 0, 'Above 7');
data.setValue(0, 1, 0);

var formatter = new
google.visualization.NumberFormat({fractionDigits: 0,suffix: '%'});
formatter.format(data, 1);

var above7Gauge = new
google.visualization.Gauge(document.getElementById('above7Gauge'));
var options = {width: 100, height: 100, redColor: 
'#ee9f00',
yellowColor: '#00', greenColor: '#9fee00', redFrom: 0, redTo: 30,
yellowFrom: 30, yellowTo: 70, greenFrom: 70, greenTo: 100, minorTicks:
5};

above7Gauge.draw(data, options);
setInterval(function(){
formatter.format(data, 1);
data.setValue(0, 1, ". 
$keywords_o_meter[1] .");
above7Gauge.draw(data, options);
}, 1000);
}

-- 
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 
google-visualization-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.



Re: [visualization-api] Gauge chart not displaying in IE8

2011-07-03 Thread ChartALot
Thank you for reporting the issue.

On Wed, Jun 29, 2011 at 11:50 AM, francescomm  wrote:

> In Internet Explorer 8 the Gauge Chart is not visible, even in the
> example page. I tested with many other browsers and it displays
> correcly, including explorer 9.
>
> --
> 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
> google-visualization-api+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-visualization-api?hl=en.
>
>

-- 
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 
google-visualization-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.



[visualization-api] Gauge chart not displaying in IE8

2011-06-29 Thread francescomm
In Internet Explorer 8 the Gauge Chart is not visible, even in the
example page. I tested with many other browsers and it displays
correcly, including explorer 9.

-- 
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 
google-visualization-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.