[visualization-api] Re: datetime on hAxis

2014-09-20 Thread Neil Camara
, 19, 22), {v: new Date(2014, 8, 19, 23), f: 'Sep 19, 11PM'} // override default formatting } On Friday, September 19, 2014 3:53:05 PM UTC-4, Neil Camara wrote: Is this possible? Let's say we have 24 points which represent 1 day, 24 hours. Currently, the type is datetime I'd like

[visualization-api] Re: datetime on hAxis

2014-09-20 Thread Neil Camara
It worked Andrew! I also overrode the hours 1,2,3,4,5,7,8,9,10 and 11 and replaced them with blank space. How do I make the text display horizontally since it's displaying diagonally? Here is the chart using your suggestion. http://i.imgur.com/ajKn1wS.png -- You received this message because

[visualization-api] Re: specifying N number of x-axis when data is only one

2014-08-20 Thread Neil Camara
Hi Andrew, What's wrong with my ticks? hAxis: { format:'h:mm aa', ticks: [ [0, 0, 0, 0], [1, 0, 0, 0], [2, 0, 0, 0], [3, 0, 0, 0], [4, 0, 0, 0], [5, 0, 0, 0], [6, 0, 0, 0], [7, 0, 0, 0], [8, 0, 0, 0], [9, 0, 0, 0], [10, 0, 0, 0], [11, 0, 0, 0],

[visualization-api] Re: specifying N number of x-axis when data is only one

2014-08-20 Thread Neil Camara
/v75lIbq.png On Wednesday, August 20, 2014 3:28:00 PM UTC-5, Neil Camara wrote: Hi Andrew, What's wrong with my ticks? hAxis: { format:'h:mm aa', ticks: [ [0, 0, 0, 0], [1, 0, 0, 0], [2, 0, 0, 0], [3, 0, 0, 0], [4, 0, 0, 0], [5, 0, 0, 0], [6

[visualization-api] ng-google charts and formatter pattern for time

2014-08-20 Thread Neil Camara
Hi folks, Is anyone here using ng-google charts in AngularJS? If so, I need help on formatting the tooltip so that hours will be displayed in standard form rather than military. Thanks, Neil -- You received this message because you are subscribed to the Google Groups Google Visualization

[visualization-api] making y axis start at 0

2014-08-06 Thread Neil Camara
Hi folks, How can I force the chart to show 0? Please check my output chart http://i.imgur.com/0ClqVJw.png Thanks, Neil -- 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

[visualization-api] Re: making y axis start at 0

2014-08-06 Thread Neil Camara
Thanks Andrew again! :) I'll try it now! On Wednesday, August 6, 2014 6:12:14 PM UTC-5, Andrew Gallant wrote: Set the vAxis.minValue option to 0: vAxis: { minValue: 0 } On Wednesday, August 6, 2014 3:13:56 PM UTC-4, Neil Camara wrote: Hi folks, How can I force the chart to show 0

[visualization-api] specifying N number of x-axis when data is only one

2014-08-04 Thread Neil Camara
For example, the data I received is { hour : 2:00, totalcount : 10 }, only 1 data. What I'd like Google Charts to do is display like 6 hours in the x-axis like 1:00 2:00 3:00 4:00 5:00 3:00 of course, my column totalcount data will only appear above 2:00. I tried the code below but Google

[visualization-api] Re: specifying N number of x-axis when data is only one

2014-08-04 Thread Neil Camara
, 0, 0, 0], [5, 0, 0, 0], [6, 0, 0, 0]] } On Monday, August 4, 2014 5:32:17 PM UTC-4, Neil Camara wrote: For example, the data I received is { hour : 2:00, totalcount : 10 }, only 1 data. What I'd like Google Charts to do is display like 6 hours in the x-axis like 1:00 2:00 3:00 4:00 5

[visualization-api] Re: specifying N number of x-axis when data is only one

2014-08-04 Thread Neil Camara
It worked Andrew and it looks beautiful! :) Will it work for dates? If so, what would be the values of ticks? -- 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: specifying N number of x-axis when data is only one

2014-08-04 Thread Neil Camara
Date(2014, 7, 4)] } On Monday, August 4, 2014 8:12:05 PM UTC-4, Neil Camara wrote: It worked Andrew and it looks beautiful! :) Will it work for dates? If so, what would be the values of ticks? -- You received this message because you are subscribed to the Google Groups Google

[visualization-api] formatting time on the tooltip

2014-07-29 Thread Neil Camara
Hi folks, I currently have this code. it's only formatting the time that is on the axis but not when we hover the mouse pointer on the column. hAxis: { format:'h:mm aa', gridlines: { count: 12 } }, In the axis, it shows the hour correctly

[visualization-api] Weirdness in x-axis ... ot displaying proper x axis on single hour data

2014-07-27 Thread Neil Camara
Hi folks, When there is only one data with a format of datetime, the x axis is incorrect. However, when there are more than one date in datetime format, it looks fine Check this out, single hour but it's displaying 12:00AM multiple times. I only want to see it one time.

[visualization-api] left values are so big making graphs smaller(I think)

2014-07-18 Thread Neil Camara
Hi folks, How do we automatically convert values so that the numbers doesn't eat up too much space? For example: I would I want 5,000 to be displayed at 5k. For 13,000,000, I want Google Charts to display 13M. This is what is happening now. http://i.imgur.com/QB8tRhK.png Is it also possible

[visualization-api] Re: display hour text but not all hours

2014-07-11 Thread Neil Camara
(a) { a.dates.forEach(function(d) { dataFields.forEach(function(f) { // do stuff }); }); }); On Tuesday, July 8, 2014 2:23:53 PM UTC-4, Neil Camara wrote: I'm using Google's ng-google-chart.js. This is the exact link - https://github.com/bouil/angular-google

[visualization-api] make line thinner - possible?

2014-07-09 Thread Neil Camara
Hi folks, Can we control the thickness of the dark blue line on the chart? I want to make it thinner. http://i.imgur.com/DWScfw2.png Thanks, Neil -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and

[visualization-api] Re: make line thinner - possible?

2014-07-09 Thread Neil Camara
That is awesome!! :) Thanks a lot! On Wednesday, July 9, 2014 8:26:15 AM UTC-5, Jeremy Faller wrote: I believe you're using an Area chart? You want to set the lineWidth option: http://jsfiddle.net/8sf6b/ On Wednesday, July 9, 2014 8:37:54 AM UTC-4, Neil Camara wrote: Hi folks

[visualization-api] Re: display hour text but not all hours

2014-07-08 Thread Neil Camara
:59:58 AM UTC-4, Neil Camara wrote: Here it is Andrew. Sorry, I was all day out in my garden. :) https://gist.github.com/c0debreaker/4e4944c382ac44757db4 On Sunday, July 6, 2014 2:37:42 PM UTC-5, Andrew Gallant wrote: Can you post a sample of the jsonData contents? On Sunday, July 6, 2014 2

[visualization-api] Re: display hour text but not all hours

2014-07-08 Thread Neil Camara
into a chart object (or ChartWrapper, or something else?) and how are you drawing the chart? On Tuesday, July 8, 2014 10:11:19 AM UTC-4, Neil Camara wrote: This is the code that will receive the chart. div google-chart chart=odometerChart/div This is the code that will plot the graph

[visualization-api] Re: display hour text but not all hours

2014-07-07 Thread Neil Camara
Here it is Andrew. Sorry, I was all day out in my garden. :) https://gist.github.com/c0debreaker/4e4944c382ac44757db4 On Sunday, July 6, 2014 2:37:42 PM UTC-5, Andrew Gallant wrote: Can you post a sample of the jsonData contents? On Sunday, July 6, 2014 2:44:07 AM UTC-4, Neil Camara wrote

[visualization-api] Re: display hour text but not all hours

2014-07-06 Thread Neil Camara
types? If you provide a code sample for generating your chart, I can work with you to figure out how to make the hours display correctly. On Saturday, July 5, 2014 2:12:47 AM UTC-4, Neil Camara wrote: I forgot to mention that I still have to show all 24 hour data. On Saturday, July 5, 2014 1

[visualization-api] display hour text but not all hours

2014-07-05 Thread Neil Camara
Hi folks, I was given this design by our designer. Is it possible to display the hour similar to the image below? 3:00 6:00 9:00 and so on if it is, can someone please make a plunkr? http://i.imgur.com/BUmOSDn.png Thanks in advance! Neil -- You received this message because you are

[visualization-api] Re: display hour text but not all hours

2014-07-05 Thread Neil Camara
I forgot to mention that I still have to show all 24 hour data. On Saturday, July 5, 2014 1:08:51 AM UTC-5, Neil Camara wrote: Hi folks, I was given this design by our designer. Is it possible to display the hour similar to the image below? 3:00 6:00 9:00 and so on if it is, can someone

[visualization-api] Data - is it sent to google?

2014-07-01 Thread Neil Camara
Hey guys, quick question. When we generate a graph, does our data get sent first to Google before it gets rendered? Thanks, Neil -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and stop receiving

[visualization-api] Re: Data - is it sent to google?

2014-07-01 Thread Neil Camara
Thank you. I also ran some test like sniffer and turning of my network. I was still able to render the local performance data. On Tuesday, July 1, 2014 1:23:48 PM UTC-5, Tushar Narkhede wrote: No never On Tuesday, July 1, 2014 11:24:07 PM UTC+5:30, Neil Camara wrote: Hey guys, quick

[visualization-api] copy the look of this graph

2014-06-22 Thread Neil Camara
Hi, How do I make a graph so that it looks like this? I would like to know how the circle with the dot inside is made. http://i.imgur.com/0hZa8rw.png Thanks in advance! Neil -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To

[visualization-api] Re: AngularJS equivalent of this code please :)

2014-05-23 Thread Neil Camara
I'm not having any luck :( Still no response from the author -- 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] Re: AngularJS equivalent of this code please :)

2014-05-22 Thread Neil Camara
it as-is. On Thursday, May 22, 2014 1:53:32 AM UTC-4, Neil Camara wrote: Hi folks, Can someone please make an AngularJS code of this? https://gist.github.com/c0debreaker/fbe18a30290ee619a6fd I'm actually more interested on how to convert the addListener code into AngularJS, line 46

[visualization-api] Re: AngularJS equivalent of this code please :)

2014-05-22 Thread Neil Camara
this is an example google chart using angular http://plnkr.co/edit/E4iPtQ?p=preview -- 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] Re: How to achieve this kind of complex chart?

2014-05-21 Thread Neil Camara
That's what I thought earlier too. Thanks for the confirmation! -- 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] AngularJS equivalent of this code please :)

2014-05-21 Thread Neil Camara
Hi folks, Can someone please make an AngularJS code of this? https://gist.github.com/c0debreaker/fbe18a30290ee619a6fd I'm actually more interested on how to convert the addListener code into AngularJS, line 46. Thanks! Neil -- You received this message because you are subscribed to the

[visualization-api] How to achieve this kind of complex chart?

2014-05-20 Thread Neil Camara
Hi folks, Can someone please help me how to prepare the data so that the chart gets displayed this way? A jsfiddle or plunkr would be awesome. Mocked data doesn't have to be big. Please see attachment. Any help would be greatly appreciated! Thanks, :) Neil -- You received this message

[visualization-api] Re: How to achieve this kind of complex chart?

2014-05-20 Thread Neil Camara
or if it's not possible, what type of chart is ideal for that kind of data? On Wednesday, May 21, 2014 12:25:48 AM UTC-5, Neil Camara wrote: Hi folks, Can someone please help me how to prepare the data so that the chart gets displayed this way? A jsfiddle or plunkr would be awesome. Mocked

Re: [visualization-api] Re: prevent negative axis

2014-05-17 Thread Neil Camara
for the chart (it takes a number for the height in pixels, eg height: 400) or in the style/CSS of the container div. On Friday, May 16, 2014 6:11:34 PM UTC-4, Neil Camara wrote: Here is a sample json - https://gist.github.com/c0debreaker/3c8e64722fdac6505439 By the way, I wrote

Re: [visualization-api] Re: prevent negative axis

2014-05-16 Thread Neil Camara
that a temporary solution at best. If you could share code that replicates the issue, I'll look into it to see if I can figure out what is going on to cause it in the first place. On Thursday, May 15, 2014 4:24:07 PM UTC-4, Neil Camara wrote: Awesome! It's fixed! I set both min and max. Thank you

Re: [visualization-api] Re: prevent negative axis

2014-05-16 Thread Neil Camara
, May 16, 2014 3:27:58 AM UTC-4, Neil Camara wrote: Here is the code which contains the fix on line 71. I actually just added viewWindow : { min : 0 , max : 600 }, https://gist.github.com/c0debreaker/390245014dabf4e965d7 On Thursday, May 15, 2014 5:50:16 PM UTC-5, Andrew Gallant wrote

[visualization-api] prevent negative axis

2014-05-15 Thread Neil Camara
Hi folks, I'm not sure why it's showing negative axis even if I don't have any negative values that I'm putting. How do I force it so that it's always at zero? Thanks, Neil -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To

[visualization-api] Re: prevent negative axis

2014-05-15 Thread Neil Camara
Hi Daniel, It's looking great! No more negative. :) Now, there is one more I need to fix. How can we set 0 to a specific location so that the chart stays in one place? Look at my chart which I saved as a gif image, it's jumping up and down depending on the data I put to it. Thanks, Neil --

[visualization-api] Re: prevent negative axis

2014-05-15 Thread Neil Camara
I noticed the .gif file I attached got messed up the google's email parser. It won't do anymore animation. Here it is http://c0debreaker.github.io/images/chartanim.gif Thanks, Neil -- You received this message because you are subscribed to the Google Groups Google Visualization API group.

Re: [visualization-api] Re: prevent negative axis

2014-05-15 Thread Neil Camara
Awesome! It's fixed! I set both min and max. Thank you so much! :) -- 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] Google Charts and AngularJS ui-router module

2014-05-07 Thread Neil Camara
Hey folks, I haven't found any code that allows us to click on a dot of line, bar, or a pie slice which uses ui-router's ui-sref. The reason I wanted to do this is to be able to drill down on that clicked data. Any help would be greatly appreciated. Thanks, Neil -- You received this

[visualization-api] Re: how to achieve this stacked column?

2014-05-07 Thread Neil Camara
I thought I replied to this yesterday. Thanks a lot! My chart is beautiful now! :) On Tuesday, May 6, 2014 10:06:49 PM UTC-5, Andrew Gallant wrote: Here's an example that might work well for you: http://jsfiddle.net/asgallant/fxq2h/2/ On Tuesday, May 6, 2014 7:51:20 PM UTC-4, Neil Camara

[visualization-api] Re: Google Charts and AngularJS ui-router module

2014-05-07 Thread Neil Camara
. Let's hope it works. On Wednesday, May 7, 2014 4:01:00 PM UTC-5, Andrew Gallant wrote: What do ui-router and ui-sref do? Can you post a code example or a link to the page so I can see how you have all this linked together? On Wednesday, May 7, 2014 12:25:18 PM UTC-4, Neil Camara wrote: Hey

[visualization-api] 3d donut support

2014-05-06 Thread Neil Camara
Hi folks, Do you know when they will add support for 3d donut charts? Thanks, Neil -- 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] Removing displayed data graphically

2014-05-06 Thread Neil Camara
Hi folks, I've been testing Google Charts and HighCharts. There is a feature in HighCharts that I like and that is removing data that has been plotted. Imagine we have a line graph and there are 3 different lines. When we click on one of the legends, the line will disappear. When we click on

[visualization-api] Re: 3d donut support

2014-05-06 Thread Neil Camara
=1582on it. You can star the report to get updates on progress. On Tuesday, May 6, 2014 10:29:59 AM UTC-4, Neil Camara wrote: Hi folks, Do you know when they will add support for 3d donut charts? Thanks, Neil -- You received this message because you are subscribed to the Google Groups

[visualization-api] Re: Removing displayed data graphically

2014-05-06 Thread Neil Camara
You're amazing! Thanks a lot! :) On Tuesday, May 6, 2014 10:28:47 AM UTC-5, Andrew Gallant wrote: That is not supported by default, but I wrote a hack to make it work: http://jsfiddle.net/asgallant/6gz2Q/. On Tuesday, May 6, 2014 10:34:16 AM UTC-4, Neil Camara wrote: Hi folks, I've

[visualization-api] how to achieve this stacked column?

2014-05-06 Thread Neil Camara
Hi folks, Do you guys have a jsfiddle/plunkr of this? Please see attached chart image. Thanks in advance! Neil -- 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

[visualization-api] Re: how to achieve this stacked column?

2014-05-06 Thread Neil Camara
will have to build the legend yourself as well, as there is no support for creating a legend like that. On Tuesday, May 6, 2014 1:34:58 PM UTC-4, Neil Camara wrote: Hi folks, Do you guys have a jsfiddle/plunkr of this? Please see attached chart image. Thanks in advance! Neil -- You

[visualization-api] Re: how to achieve this stacked column?

2014-05-06 Thread Neil Camara
Also, in one REST endpoint request, I can have devices upto 100 devices. I can modify the SELECT sql statement to only return 25. For the remaining data, I can just make another REST endpoint call. And for this, I am thinking of just using carousel as pagination. -- You received this message

[visualization-api] Re: how to achieve this stacked column?

2014-05-06 Thread Neil Camara
PM UTC-4, Neil Camara wrote: Got it. Andrew's jsfiddle will work for me. For the data I presented, what chart is ideal to use or recommended? On Tuesday, May 6, 2014 2:04:12 PM UTC-5, Andrew Gallant wrote: If I understand correctly, your columns in that chart are not stacked