[visualization-api] Re: Discontinuity in the series of lines

2016-10-24 Thread Wilson Rogério Braun
Exactly Daniel. Thank you 100%. interpolateNulls: true Em segunda-feira, 24 de outubro de 2016 10:33:30 UTC-2, Wilson Rogério Braun escreveu: > > Hello, because there is a discontinuity in the series of lines? > > " Line: var url = '/Programa_Nutricao/Principal/Ev

[visualization-api] Discontinuity in the series of lines

2016-10-24 Thread Wilson Rogério Braun
Hello, because there is a discontinuity in the series of lines? " Line: var url = '/Programa_Nutricao/Principal/EvolucaoMorfometria/' + codigo;"

Re: [visualization-api] version that does not render

2016-06-08 Thread Wilson Rogério Braun
> I cleaned up your code here https://jsfiddle.net/dlaliberte/r5eygwny/ > but it still doesn't run because it requires your local data. > > On Wed, Jun 8, 2016 at 8:27 AM, Wilson Rogério Braun <brau...@gmail.com > > wrote: > >> Hello, >> someone could give a h

[visualization-api] version that does not render

2016-06-08 Thread Wilson Rogério Braun
Hello, someone could give a hint, as I am trying to deploy my graphics and I can not render with the new versions google chart: Down version that does not render: https://www.gstatic.com/charts/loader.js";> var value; google.charts.load('current', { 'packages':

[visualization-api] Changing the date format

2015-05-18 Thread Wilson Rogério Braun
Changing the date format formatType: 'short'? function drawtable(codigo) { var url = '/Programa_Imunizacao/Principal/RetornaIdade/' + codigo; $.get(url, {}, function (data) { var tdata = new

[visualization-api] Re: font-size of the table

2015-05-18 Thread Wilson Rogério Braun
Thank you. 100% Em sábado, 16 de maio de 2015 17:56:41 UTC-3, Wilson Rogério Braun escreveu: How can I change the font size of the table in the code below? script type=text/javascript var value; google.load(visualization, 1, { packages: [table

[visualization-api] As the chart below does not render?

2015-05-17 Thread Wilson Rogério Braun
*Below the chart and code:* https://lh3.googleusercontent.com/-0KQ1vnIaqBY/VVjOHjlPPqI/AZk/T05MBZGC_y4/s1600/chart.png script type=text/javascript var value; google.load('visualization', '1.1', { 'packages': ['corechart'] });

[visualization-api] font-size of the table

2015-05-16 Thread Wilson Rogério Braun
How can I change the font size of the table in the code below? script type=text/javascript var value; google.load(visualization, 1, { packages: [table] }); google.setOnLoadCallback(function () { drawtable('') }); $(document).ready(function () {

[visualization-api] Re: Changing the Font Size???

2015-05-16 Thread Wilson Rogério Braun
hAxis: { title: .., textStyle: { fontSize: 10 } }, Em segunda-feira, 13 de abril de 2015 17:20:47 UTC-3, in...@solution-of-media.de escreveu: Hey there! How can I change the Font Size in a corechart(???) ?? Many thanx! -- You received this message because you are subscribed to

[visualization-api] Rendering a google chart from a select

2015-04-08 Thread Wilson Rogério Braun
You can render a google chart from a selected item in a DropDownList? Where can I find an example? -- 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

[visualization-api] How to render the chart after selecting an item in a select command?

2015-04-07 Thread Wilson Rogério Braun
select id=animais name=cod_animal class=form-control/select script type=text/javascript google.load('visualization', '1.1', { 'packages': ['corechart'] }); google.setOnLoadCallback(drawChart); function drawChart() { var e = documento.getElementById(#animais); var

[visualization-api] Re: How to render the chart after selecting an item in a select command?

2015-04-07 Thread Wilson Rogério Braun
select id=animais name=cod_animal class=form-control/select script type=text/javascript google.load('visualization', '1.1', { 'packages': ['corechart'] }); google.setOnLoadCallback(drawChart); function drawChart() { var e = document.getElementById(#animais); var

Re: [visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-11 Thread Wilson Rogério Braun
\(([^)]+)\)/; var results = pattern.exec(value); return new Date(parseFloat(results[1])); } On Wed, Mar 11, 2015 at 3:43 PM Wilson Rogério Braun brau...@gmail.com javascript: wrote: Almost there, but miss rendereizar the chart. Below image attached with island and return code. Any suggestions

Re: [visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-11 Thread Wilson Rogério Braun
) { var pattern = /Date\(([^)]+)\)/; var results = pattern.exec(value); return new Date(parseFloat(results[1])); } On Wed, Mar 11, 2015 at 3:43 PM Wilson Rogério Braun brau...@gmail.com wrote: Almost there, but miss rendereizar the chart. Below image attached with island

Re: [visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-11 Thread Wilson Rogério Braun
), parseFloat(data[i].peso_kg)]); On Wed, Mar 11, 2015 at 4:58 PM Wilson Rogério Braun brau...@gmail.com javascript: wrote: *He returned to the console with the message:* Uncaught Error: If argument is given to addRow, it must be an array, or null Em quarta-feira, 11 de março de 2015 17:50:45 UTC-3

Re: [visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-11 Thread Wilson Rogério Braun
Many Thanks. Em quarta-feira, 11 de março de 2015 18:08:12 UTC-3, Wilson Rogério Braun escreveu: Wonder! Congratulations. https://lh3.googleusercontent.com/-rl3ZSGoiBho/VQCubyGr0dI/AX8/pPwRiH_0P50/s1600/console.png Em quarta-feira, 11 de março de 2015 18:03:28 UTC-3, Sergey

Re: [visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-11 Thread Wilson Rogério Braun
(document.getElementById('EvolucaoPeso')); chart.draw(tdata, options); }); } /script Em segunda-feira, 9 de março de 2015 16:40:54 UTC-3, Wilson Rogério Braun escreveu: THANK YOU. Em segunda-feira, 9 de março de 2015 16:38:14 UTC-3, Sergey escreveu: It sounds like

[visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-09 Thread Wilson Rogério Braun
, Wilson Rogério Braun escreveu: *Alguém tem alguma sugestão?* *Controler:* public ActionResult Peso() { var dia = db.spPesoEvolucao().ToList(); var a = dia.Select(x = new { x.data_semanal, x.peso_kg }); return Json

Re: [visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-09 Thread Wilson Rogério Braun
, 2015 at 3:08 PM Wilson Rogério Braun brau...@gmail.com javascript: wrote: * Uncaught SyntaxError: Unexpected token ;* *script type=text/javascriptgoogle.load('visualization', '1.1', { 'packages': ['corechart'] }); google.setOnLoadCallback(drawStuff); function

[visualization-api] Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-06 Thread Wilson Rogério Braun
*Alguém tem alguma sugestão?* *Controler:* public ActionResult Peso() { var dia = db.spPesoEvolucao().ToList(); var a = dia.Select(x = new { x.data_semanal, x.peso_kg }); return Json(a, JsonRequestBehavior.AllowGet); } *View:* script

[visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-06 Thread Wilson Rogério Braun
março de 2015 11:09:40 UTC-3, Wilson Rogério Braun escreveu: *Alguém tem alguma sugestão?* *Controler:* public ActionResult Peso() { var dia = db.spPesoEvolucao().ToList(); var a = dia.Select(x = new { x.data_semanal, x.peso_kg }); return Json

[visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-06 Thread Wilson Rogério Braun
Teria algum exemplo para aplicar a sugestão? Em sexta-feira, 6 de março de 2015 11:09:40 UTC-3, Wilson Rogério Braun escreveu: *Alguém tem alguma sugestão?* *Controler:* public ActionResult Peso() { var dia = db.spPesoEvolucao().ToList(); var

Re: [visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-06 Thread Wilson Rogério Braun
Até ai acho que estou entendendo, obrigado, mas como retornar do banco desta forma? Em sexta-feira, 6 de março de 2015 15:29:01 UTC-3, Sergey escreveu: Here is a basic example: http://jsfiddle.net/vc36osx3/ On Fri, Mar 6, 2015 at 1:12 PM Wilson Rogério Braun brau...@gmail.com javascript