Re: [visualization-api] Google ChartWrapper doesn't work with line charts

2018-04-09 Thread Victor Oyemi
Sir,

Thanks for the feedback. Can you advice on sample clue to deploy a.d test
41.
Any work through will be appreciated of a collaborative so u can have a
test on the environment.

Pm your github ID so we can collaborate.

Appreciate your feedback

On Mon, Apr 9, 2018, 5:32 PM 'Daniel LaLiberte' via Google Visualization
API  wrote:

> Looks like a bug that occurred starting with version 42.  If you replace
> your 'current' version with '41', it appears to work.   It is also working
> with the 'upcoming' version now, though I can't be sure it will work
> correctly due to some other issues there.
>
> Thanks for reporting this.  I'll try to make it work correctly for the
> 'upcoming' version.
>
> On Mon, Apr 9, 2018 at 8:58 AM Victor Oyemi  wrote:
>
>> Hello Sir,
>>
>> Please can one advice to call it up as it breaks out when trading tunes
>> up,
>>
>> See coinestate.somidax.net
>>
>> Kindly pm for access to repo at github page.
>>
>> Thanks.
>>
>> On Mon, Apr 9, 2018, 1:48 PM Nimesh  wrote:
>>
>>> I am following this
>>> 
>>> example from Google Chart documentation
>>> 
>>> .
>>>
>>>
>>> In the project all the existing graphs are plotted using ChartWrapper
>>> ,
>>> so by following example I created this chart
>>> , now all I needed to do was
>>> replace the line where new Histogram instance is created with ChartWrapper.
>>>
>>>
>>> i.e. Replace below code with:
>>>
>>> let chart = new google.visualization.Histogram( 
>>> document.getElementById("example") ); chart.draw(data, options);
>>>
>>>
>>>
>>> Following code:
>>>
>>> let wrapper = new google.visualization.ChartWrapper({ chartType: 
>>> "Histogram", dataTable: data, options: options, containerId: 
>>> "example_chartwrapper" }); wrapper.draw();
>>>
>>> But it doesn't work and I am getting following error:
>>>
>>>
>>> Invalid column index 1. Should be an integer in the range [0-0].
>>>
>>>
>>> I have created two Code pen examples replicating this issue:
>>>
>>>- Uses my example data: https://codepen.io/anon/pen/YadLyG
>>>- Uses example data from Chart documentation:
>>>https://codepen.io/anon/pen/QmzrvZ
>>>
>>> --
>>> 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/8d9670e4-d059-44e7-899d-4305d8ab5769%40googlegroups.com
>>> 
>>> .
>>> 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
>> 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/CAG0sMoa3f4c7XGbL2sh8%3DV-JF6je7Y-Q4jsNgbU33mfLeXikuA%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> --
> Daniel LaLiberte 
> dlalibe...@google.com    5CC, 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
> 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/CAOtcSJMj-guQAQAL66KMXepGMDv341y8O-uUkY1Ldw71PXm50g%40mail.gmail.com
> 

[visualization-api] Re: How do I update a Google Gauge with MySQL data?

2018-04-09 Thread kenhes
Did you get this working Andrew? Gabriel, I'm not sure what you mean by: 
adjust global SQL to your DB info.

-- 
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/6a1e0262-ccb8-4a66-a4e7-49e3b12a79bf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google ChartWrapper doesn't work with line charts

2018-04-09 Thread 'Daniel LaLiberte' via Google Visualization API
Looks like a bug that occurred starting with version 42.  If you replace
your 'current' version with '41', it appears to work.   It is also working
with the 'upcoming' version now, though I can't be sure it will work
correctly due to some other issues there.

Thanks for reporting this.  I'll try to make it work correctly for the
'upcoming' version.

On Mon, Apr 9, 2018 at 8:58 AM Victor Oyemi  wrote:

> Hello Sir,
>
> Please can one advice to call it up as it breaks out when trading tunes up,
>
> See coinestate.somidax.net
>
> Kindly pm for access to repo at github page.
>
> Thanks.
>
> On Mon, Apr 9, 2018, 1:48 PM Nimesh  wrote:
>
>> I am following this
>> 
>> example from Google Chart documentation
>> .
>>
>>
>> In the project all the existing graphs are plotted using ChartWrapper
>> ,
>> so by following example I created this chart
>> , now all I needed to do was replace
>> the line where new Histogram instance is created with ChartWrapper.
>>
>>
>> i.e. Replace below code with:
>>
>> let chart = new google.visualization.Histogram( 
>> document.getElementById("example") ); chart.draw(data, options);
>>
>>
>>
>> Following code:
>>
>> let wrapper = new google.visualization.ChartWrapper({ chartType: 
>> "Histogram", dataTable: data, options: options, containerId: 
>> "example_chartwrapper" }); wrapper.draw();
>>
>> But it doesn't work and I am getting following error:
>>
>>
>> Invalid column index 1. Should be an integer in the range [0-0].
>>
>>
>> I have created two Code pen examples replicating this issue:
>>
>>- Uses my example data: https://codepen.io/anon/pen/YadLyG
>>- Uses example data from Chart documentation:
>>https://codepen.io/anon/pen/QmzrvZ
>>
>> --
>> 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/8d9670e4-d059-44e7-899d-4305d8ab5769%40googlegroups.com
>> 
>> .
>> 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
> 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/CAG0sMoa3f4c7XGbL2sh8%3DV-JF6je7Y-Q4jsNgbU33mfLeXikuA%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Daniel LaLiberte 
dlalibe...@google.com    5CC, 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 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/CAOtcSJMj-guQAQAL66KMXepGMDv341y8O-uUkY1Ldw71PXm50g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] How to draw grid chart(with same cells)?

2018-04-09 Thread Sergei Obodovsky
Hello, everyone!
Give me advice, please, how to draw chart with same cells.
Each cell must have own color or opacity.
I think use scatterChart for it:
-set coordinates x/y
-calculate and set size for pointSize property(it would by cell)
But i don't know, how to set color or opacity for each cell.
And how to add to chart a gradient legend.
This is an example of how it should look like
https://bl.ocks.org/cagrimmett/07f8c8daea00946b9e704e3efcbd5739

-- 
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/34b349df-41c9-4dc5-ae7c-3a4b3f3d9e24%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] How can I draw radar chart with Google Charts?

2018-04-09 Thread Jamie Hari
Daniel et al.,


I'd love to also add my support for having a radar chart option in the new 
Google Charts API. It's been 2 years since this was posted and I'm fearful 
that the deprecated Image Charts API will soon be switched off and we'll 
have no option left. :(


On Sunday, May 22, 2016 at 1:02:37 PM UTC-4, Daniel LaLiberte wrote:
>
> Hi Youichi,
>
> We don't have a Radar chart yet in the Google Charts.  I am considering 
> implementing one, though, using an AreaChart, and projecting the data to 
> polar coordinates.  
>
> The deprecated Image Charts won't be going away entirely any time soon, 
> however, and probably not until we have suitable replacements ready to go.
>
> On Sun, May 22, 2016 at 12:11 AM, Youichi Okada  > wrote:
>
>> Hi.
>>
>> I want to draw radar chart like this.
>>
>>
>> https://developers.google.com/chart/image/docs/gallery/radar_charts#overview
>>
>> But this Image Charts are deprecated.
>> *"Warning:* This API is deprecated. Please use the actively maintained 
>> Google 
>> Charts  API instead. See our 
>> deprecation 
>> policy  for details.
>>
>> Can I draw radar chart with Google Charts?
>>
>> -- 
>> 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-visua...@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/8b01b173-7749-45e0-91f1-0335a5d9cd98%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Daniel LaLiberte 
> dlali...@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 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/6a8a2820-46ce-4302-b701-b009eba84fc6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google ChartWrapper doesn't work with line charts

2018-04-09 Thread Victor Oyemi
Hello Sir,

Please can one advice to call it up as it breaks out when trading tunes up,

See coinestate.somidax.net

Kindly pm for access to repo at github page.

Thanks.

On Mon, Apr 9, 2018, 1:48 PM Nimesh  wrote:

> I am following this
> 
> example from Google Chart documentation
> .
>
>
> In the project all the existing graphs are plotted using ChartWrapper
> ,
> so by following example I created this chart
> , now all I needed to do was replace
> the line where new Histogram instance is created with ChartWrapper.
>
>
> i.e. Replace below code with:
>
> let chart = new google.visualization.Histogram( 
> document.getElementById("example") ); chart.draw(data, options);
>
>
>
> Following code:
>
> let wrapper = new google.visualization.ChartWrapper({ chartType: "Histogram", 
> dataTable: data, options: options, containerId: "example_chartwrapper" }); 
> wrapper.draw();
>
> But it doesn't work and I am getting following error:
>
>
> Invalid column index 1. Should be an integer in the range [0-0].
>
>
> I have created two Code pen examples replicating this issue:
>
>- Uses my example data: https://codepen.io/anon/pen/YadLyG
>- Uses example data from Chart documentation:
>https://codepen.io/anon/pen/QmzrvZ
>
> --
> 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/8d9670e4-d059-44e7-899d-4305d8ab5769%40googlegroups.com
> 
> .
> 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 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/CAG0sMoa3f4c7XGbL2sh8%3DV-JF6je7Y-Q4jsNgbU33mfLeXikuA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google ChartWrapper doesn't work with Histogram charts

2018-04-09 Thread Nimesh


I am following this 

 
example from Google Chart documentation 
.


In the project all the existing graphs are plotted using ChartWrapper 
,
 
so by following example I created this chart 
, now all I needed to do was replace 
the line where new Histogram instance is created with ChartWrapper.


i.e. Replace below code with:

let chart = new google.visualization.Histogram( 
document.getElementById("example") ); chart.draw(data, options);



Following code:

let wrapper = new google.visualization.ChartWrapper({ chartType: "Histogram", 
dataTable: data, options: options, containerId: "example_chartwrapper" }); 
wrapper.draw();

But it doesn't work and I am getting following error:


Invalid column index 1. Should be an integer in the range [0-0].


I have created two Code pen examples replicating this issue:

   - Uses my example data: https://codepen.io/anon/pen/YadLyG
   - Uses example data from Chart documentation: 
   https://codepen.io/anon/pen/QmzrvZ

-- 
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/8d9670e4-d059-44e7-899d-4305d8ab5769%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Re: Google-chart legend item alignment

2018-04-09 Thread 'Maciej Golkowski' via Google Visualization API
I tried suggestion with adding spaces however, it seems like api trims them
:D
http://jsfiddle.net/19o19aco/8/
I will just stick to paged legend positioned on the side, oh well.
Thanks for Your response.


On 6 April 2018 at 15:51, Sean Larson  wrote:

> Got it. I also thought about custom aligning every entry, but I am not
> sure if GC supports that and JQuery does not play nice with SVG elements,
> so we should tackle this before rendering if there are no mix of attributes
> that achieve what we want.
>
> You could determine the longest legend string prior to drawing the chart,
> and based on the length of each string add spaces to make them all an
> identical length?
>
> But I am thinking it is not a great practice to display so many legend
> entries? When they hover over each block, doesn't it display the series
> name and value? If not you can add tooltip attributes in the options
> variable, or write a custom toolitp, see this link
> https://www.dropbox.com/s/1szgg7bbe0b0aea/custom%20tooltip.PNG?dl=0
>
> I usually use Excel as a benchmark. What does it look like when you load
> this data into Excel?
>
>
> --
> 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/a603daaa-9cb5-4626-906f-
> 328b8a45a8ee%40googlegroups.com
> 
> .
> 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 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/CADgmSWw0u3i2ufdQvsfj67C4gxt7S4wDGjN_b26Ha0PYYg_P4Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google charts doesn't display charts

2018-04-09 Thread Gaith Daragmeh
Correction

if(number && Number.isInteger(number))

On Mon, Apr 9, 2018, 7:07 AM Gaith Daragmeh  wrote:

> You can algo verify (value && parseIt(value))
> In case the server send it as string
> On Mon, Apr 9, 2018, 3:24 AM Jeroen Gees <
> monitoring.lasercont...@gmail.com> wrote:
>
>> Hi Gaith,
>>
>> 0 is also a value because we take  the delta from each point.
>> I found the solution. instead of empty I put NaN.
>>
>> Thanks
>> J
>>
>>
>> Op zaterdag 7 april 2018 14:44:12 UTC+2 schreef Gaith Daragmeh:
>>>
>>> Just dovalue ? value : 0:
>>>
>>> On Sat, Apr 7, 2018, 4:32 AM jeroen gees  wrote:
>>>
>> Hi,

 I made a website where you can check measured points.
 Sometimes we are not able to do this measurement and then the value is
 empty.
 If this empty value is on the end of a session, google charts doesn't
 display (no error)
 ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,0.004,]

 But if the empty value is not on the end of the session there is no
 problem.
 ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,,0.004]

 I'm working with the current version.

 Can somebody help me?

 --
 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-visua...@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/30a841f3-6b9d-464a-ab16-12ce92a9cfca%40googlegroups.com
 
 .
 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
>> 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/15781c6b-77d7-4618-bef2-3b5bc047c146%40googlegroups.com
>> 
>> .
>> 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 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/CA%2BXm44J6d7xteC7qjskF7VmKM2XT5dvFHYp5KnXxmoET%2BPk9uA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google charts doesn't display charts

2018-04-09 Thread Gaith Daragmeh
You can algo verify (value && parseIt(value))
In case the server send it as string
On Mon, Apr 9, 2018, 3:24 AM Jeroen Gees 
wrote:

> Hi Gaith,
>
> 0 is also a value because we take  the delta from each point.
> I found the solution. instead of empty I put NaN.
>
> Thanks
> J
>
>
> Op zaterdag 7 april 2018 14:44:12 UTC+2 schreef Gaith Daragmeh:
>>
>> Just dovalue ? value : 0:
>>
>> On Sat, Apr 7, 2018, 4:32 AM jeroen gees  wrote:
>>
> Hi,
>>>
>>> I made a website where you can check measured points.
>>> Sometimes we are not able to do this measurement and then the value is
>>> empty.
>>> If this empty value is on the end of a session, google charts doesn't
>>> display (no error)
>>> ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,0.004,]
>>>
>>> But if the empty value is not on the end of the session there is no
>>> problem.
>>> ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,,0.004]
>>>
>>> I'm working with the current version.
>>>
>>> Can somebody help me?
>>>
>>> --
>>> 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-visua...@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/30a841f3-6b9d-464a-ab16-12ce92a9cfca%40googlegroups.com
>>> 
>>> .
>>> 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
> 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/15781c6b-77d7-4618-bef2-3b5bc047c146%40googlegroups.com
> 
> .
> 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 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/CA%2BXm44LSeUGmX2cdubDn6erzNYzpY89ie-8FweukL%2BSWW8suhg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google charts doesn't display charts

2018-04-09 Thread Jeroen Gees
Hi Gaith,

0 is also a value because we take  the delta from each point.
I found the solution. instead of empty I put NaN.

Thanks
J 


Op zaterdag 7 april 2018 14:44:12 UTC+2 schreef Gaith Daragmeh:
>
> Just dovalue ? value : 0:
>
> On Sat, Apr 7, 2018, 4:32 AM jeroen gees  > wrote:
>
>> Hi,
>>
>> I made a website where you can check measured points. 
>> Sometimes we are not able to do this measurement and then the value is 
>> empty.
>> If this empty value is on the end of a session, google charts doesn't 
>> display (no error)
>> ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,0.004,]
>>
>> But if the empty value is not on the end of the session there is no 
>> problem.
>> ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,,0.004]
>>
>> I'm working with the current version.
>>
>> Can somebody help me?
>>
>> -- 
>> 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-visua...@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/30a841f3-6b9d-464a-ab16-12ce92a9cfca%40googlegroups.com
>>  
>> 
>> .
>> 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 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/15781c6b-77d7-4618-bef2-3b5bc047c146%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.