[visualization-api] geochart marker onclick does not respond

2014-06-24 Thread Nagendra Singh
Hi, I am having a geochart. Within it there are markers. I need to open a new window on clicking the marker and display some data of that marker in the new opened Window. Is it possible? -- You received this message because you are subscribed to the Google Groups Google Visualization API

Re: [visualization-api] geochart marker onclick does not respond

2014-06-24 Thread Nagendra Singh
://jsfiddle.net/B4DQ2/ On Tue Jun 24 2014 at 5:55:17 AM, Nagendra Singh nagendra080...@gmail.com wrote: Hi, I am having a geochart. Within it there are markers. I need to open a new window on clicking the marker and display some data of that marker in the new opened Window. Is it possible

[visualization-api] mapping Geochart value in scatter chart

2014-06-24 Thread Nagendra Singh
Hi. I would like to map geochart's value into scatter chart. My geochart is a separate js file and scatter chart is a separate js file. Please help me, as I am new to this google visualisation api. -- You received this message because you are subscribed to the Google Groups Google

[visualization-api] Column chart not visible

2014-06-26 Thread Nagendra Singh
When I am hitting the url I am getting data in this form {1:{id:0,bufferCount:24,cpu:97.2,memory:64.21965762722566,siteName:null,siteIndicatorColor:0,dateOfOccurence:140207937}} Please suggest how can I map this to Column chart. I have tried using dataArray but an error- cannot read

[visualization-api] Re: Column chart not visible

2014-06-26 Thread Nagendra Singh
to remove the new keyword from the arrayToDataTable call: var data = google.visualization.arrayToDataTable(dataArray); On Thursday, June 26, 2014 10:12:34 AM UTC-4, Nagendra Singh wrote: When I am hitting the url I am getting data in this form {1:{id:0,bufferCount:24,cpu:97.2,memory

[visualization-api] Re: Column chart not visible

2014-06-26 Thread Nagendra Singh
, Nagendra Singh wrote: google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(initialize); function drawVisualization() {var data = new google.visualization.DataTable(); var jsonData = $.ajax({ url: /RestartSpringRestService/rest/siteIndicator

[visualization-api] Re: Column chart not visible

2014-06-26 Thread Nagendra Singh
, 2014 6:23:22 AM UTC+5:30, Nagendra Singh wrote: Sorry andrew this is not the code... I will be pasting the code shortly On Thursday, June 26, 2014 9:51:54 PM UTC+5:30, Andrew Gallant wrote: Hmm...I don't see anything that looks wrong. Is there a public-facing page I can test

[visualization-api] Column chart - Bar color

2014-06-27 Thread Nagendra Singh
Hi all, How can we apply color to a bar as red whenever it is high? Like a bar which has the highest value should be always red, and medium value should have yellow and at last lowest value as green.. Please suggest a way as soon as possible -- You received this message because you are

Re: [visualization-api] Re: Column chart - Bar color

2014-06-27 Thread Nagendra Singh
', {role: 'style', type: 'string'}], ['High', 50, '#d51711'], ['Medium', 25, '#f9f107'], ['Low', 10, '#11d517'] ]); On Friday, June 27, 2014 3:02:01 AM UTC-4, Nagendra Singh wrote: Hi all, How can we apply color to a bar as red whenever it is high? Like a bar which has

Re: [visualization-api] Re: Column chart - Bar color

2014-06-27 Thread Nagendra Singh
'; // all others } } }]); You need to recalculate range whenever your data changes. Use view in place of data when drawing the chart. On Friday, June 27, 2014 1:08:29 PM UTC-4, Nagendra Singh wrote: I meant color based on value... I do not need to hard code it.. My values

Re: [visualization-api] Re: Column chart - Bar color

2014-06-27 Thread Nagendra Singh
2:00:18 PM UTC-4, Nagendra Singh wrote: Please see the attachment. The column chart is coming like this.. Please help.. // Modified Code google.load('visualization', '1.1', {packages: ['corechart','controls',' table']}); google.setOnLoadCallback(drawChart); function drawChart

[visualization-api] How to integrate scatter chart or any chart with jquery's accordion

2014-06-29 Thread Nagendra Singh
How can I make my chart available onClicking a specific tab... Like scatter chart should appear when I click Scatter Chart button.. Or like jquery's accordion... Please Help... -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To

Re: [visualization-api] Re: Column chart - Bar color

2014-07-20 Thread Nagendra Singh
on your filter. On Saturday, July 12, 2014 1:19:38 AM UTC-4, Nagendra Singh wrote: Aproxx 14000 points for 1 month data. -- From: Andrew Gallant Sent: 12-07-2014 AM 10:38 To: google-visua...@googlegroups.com Subject: Re: [visualization-api] Re: Column chart

Re: [visualization-api] Re: Column chart - Bar color

2014-07-21 Thread Nagendra Singh
tricks. On Monday, July 21, 2014 12:06:41 AM UTC-4, Nagendra Singh wrote: Hi Andrew, The problem is that we need to show our customers last one month data. So its important to show all the dots. I have implemented a range slider for both date and buffer values. But they also slide very slowly

Re: [visualization-api] Re: Column chart - Bar color

2014-08-01 Thread Nagendra Singh
is stored client-side. On Wednesday, July 23, 2014 10:47:33 PM UTC-4, Nagendra Singh wrote: I am sorry for that. So what do you suggest I should do? On Wed, Jul 23, 2014 at 2:41 AM, Andrew Gallant asgall...@gmail.com wrote: No, I cannot access that. On Monday, July 21, 2014 11:10:38

Re: [visualization-api] Re: How do I parse xml data to Google visualisation api (Chart Table)

2014-09-23 Thread Nagendra Singh
. On Tuesday, September 23, 2014 6:04:46 AM UTC-4, Nagendra Singh wrote: Hi, I have xml data in following format. I need to parse only metricPath and value and show in a UI format. I am able to parse a json data. But how can I parse an XML data? metric-datas metric-data metricPath

Re: [visualization-api] Re: How do I parse xml data to Google visualisation api (Chart Table)

2014-09-25 Thread Nagendra Singh
, value]); } On Tuesday, September 23, 2014 11:03:30 PM UTC-4, Nagendra Singh wrote: Hi Andrew, Thanks of the reply. I need to put it into google api's chart table. How can I handle that? On Wed, Sep 24, 2014 at 5:50 AM, Andrew Gallant agal...@google.com wrote: You can use the DOMParser

Re: [visualization-api] Re: How do I parse xml data to Google visualisation api (Chart Table)

2014-09-29 Thread Nagendra Singh
at 6:33 PM, Nagendra Singh nagendra080...@gmail.com wrote: Wow.thanks andrew... thanks a lot. On Thu, Sep 25, 2014 at 4:45 AM, Andrew Gallant agall...@google.com wrote: Here's an example using the DOMParser: var xml = 'metric-datasmetric-datametricPathApplication Infrastructure

Re: [visualization-api] Re: How do I parse xml data to Google visualisation api (Chart Table)

2014-09-30 Thread Nagendra Singh
, 2014 1:07:56 AM UTC-4, Nagendra Singh wrote: I have a json format data. But I need to parse only value data from it and show it in google visualisation api. How can I achieve this. Consider the following JSON data: { timestamp: 1412048041, status: 200, request

[visualization-api] Can I display one column of table data in a button format?

2014-10-15 Thread Nagendra Singh
Consider thsi code: *function drawCharts() {* * var jsonData1 = $.ajax({* * url: http://127.0.0.1:9001/jolokia/read/MineStar:type=UserJMXBeanExpose,name=Statistics/*,* * dataType:json,* * async: false* * }).responseText;* * var parsed1 = JSON.parse(jsonData1);* *

Re: [visualization-api] Re: Can I display one column of table data in a button format?

2014-10-15 Thread Nagendra Singh
{ height: 1.5em; width: 25%; display: inline-block; } span.red_button { background-color: #ff; } span.green_button { background-color: #00ff00; } On Wednesday, October 15, 2014 3:38:20 AM UTC-4, Nagendra Singh wrote: Consider thsi code: *function drawCharts

[visualization-api] Accessing json values for Google Visualization table from an authenticated url.

2014-11-27 Thread Nagendra Singh
Hi, When the url is not authenticated the json values are loaded into the table normally. Like this: *function drawCharts() {* * var jsonData1 = $.ajax({* * url: http://***.***.***.***:9001/jolokia/* http://127.0.0.1:9001/jolokia/read/MineStar:type=UserJMXBeanExpose,name=Statistics/*,*

Re: [visualization-api] Re: Can I display one column of table data in a button format?

2014-11-27 Thread Nagendra Singh
when provided shows the value in json format. Then the code fails. I am not getting any idea how to tackle this situation. On Thursday, October 16, 2014 9:55:04 AM UTC+5:30, Nagendra Singh wrote: Yup its working. Thanks Andrew. On Thu, Oct 16, 2014 at 7:30 AM, Andrew Gallant agall

[visualization-api] Re: Accessing json values for Google Visualization table from an authenticated url.

2014-11-27 Thread Nagendra Singh
Sorry, its not the issue with google Visualisation API. I got it working through jquery. On Thursday, November 27, 2014 6:47:32 PM UTC+5:30, Nagendra Singh wrote: Hi, When the url is not authenticated the json values are loaded into the table normally. Like this: *function drawCharts

[visualization-api] Re: Parse json data to google visualisation api

2014-12-01 Thread Nagendra Singh
Consider the code: *google.load('visualization', '1', {'packages':['corechart','table']});* *// Set a callback to run when the Google Visualization API is loaded.* *google.setOnLoadCallback(drawChart);* *function drawChart() {* * var jsonData123 = $.ajax({* * url:

[visualization-api] How to push map into dataArray?

2017-06-18 Thread Nagendra Singh
The code is : /** * Created by Nagendra on 18-06-2017. */ google.charts.load('current', {packages: ['table']}); // Set a callback to run when the Google Visualization API is loaded. google.setOnLoadCallback(drawChart); function drawChart() { var jsonData = $.ajax({ url:

[visualization-api] Google Line Chart : How to customize point data to show some custom data.

2017-04-30 Thread Nagendra Singh
Hello, I am showing here a graph between overs and runs scored by the Team in First Innings and Second Innings: I know the point is suppose to show the default data from x and y, but i need to customize this and show the wickets fallen through the inning on the line drawn in the chart. Can