Re: [visualization-api] Re: How to show X Axis at all teh time with Google AngularJS Chart DIrective

2014-08-12 Thread Vipul
Hi Andrew, We have got this another requirement to show lines for upper bound and lower bound lines on the Line chart as shown in the screenshot. I will have just one data point for these Lines. How can I draw a straight line with one point only. Please provide assistance with this as what

[visualization-api] XY line charts (or XY charts with connected points)

2014-08-12 Thread Bryan Maloney
I noted a three-year-old thread where this was something being worked on? Has Google ever actually done it, permitting users to create xy charts where the points are connected? To forestall people who have never done scientific work, such charts are used in the sciences, particularly when the

Re: [visualization-api] XY line charts (or XY charts with connected points)

2014-08-12 Thread 'Daniel LaLiberte' via Google Visualization API
Bryan, This has been accomplished (long ago) in a couple different ways. 1. There is a ScatterChart which allows you to plot rows of independent x-y points with continuous values for both x and y, and you can optionally connect the adjacent points with a line. 2. The LineChart allows the domain

[visualization-api] Re: Question about creating a timeline

2014-08-12 Thread MB
I'm back with yet another question. Now that this task is complete, I'm trying to apply some advanced features like controls. My first goal is to add a filter to the bottom of the timeline where I can draw to just see the dates that I want to see. I followed the guidance on the

Re: [visualization-api] Re: How to show X Axis at all teh time with Google AngularJS Chart DIrective

2014-08-12 Thread Vipul
Hi Andrew, I have one more query\Concern. Currently my Application uused ng-google-chart.js which has link to www.google.com\jsapi. My application will be provided to users with no internet connectivity. How I can achieve it for offline application? Please let me know. Thank You Regards Bipul

[visualization-api] Re: Google Visualization API - Maps

2014-08-12 Thread Sofiya Niaz
Hi Andrew and Carlos, Thanks for your input. Is it possible that the map load time could be reduced to a minute or so by using geocoding service and have the server load it by using Fusion tables as specified here https://developers.google.com/maps/articles/toomanymarkers. This is considering

[visualization-api] Re: Question about creating a timeline

2014-08-12 Thread Andrew Gallant
You have to convert your Timeline into a ChartWrapper in order to use it with a Dashboard: var chart = new google.visualization.ChartWrapper({ chartType: 'Timeline', containerId: 'Chart', options: { // put your chart options here } }); On Tuesday, August 12, 2014 5:14:58

Re: [visualization-api] Re: How to show X Axis at all teh time with Google AngularJS Chart DIrective

2014-08-12 Thread Andrew Gallant
In order to draw the boundary lines, you will need at least two points. I recommend creating two new data series and setting your boundary values in the first and last rows. Unfortunately, the Visualization API requires an active internet connection; there is no way to use it offline. On

[visualization-api] Re: Google Visualization API - Maps

2014-08-12 Thread Andrew Gallant
Batch geocoding your points should speed up the load time all by itself. The layers that article talks about are not available through the Visualization API's Map visualization; you would need to use the Google Maps API to have access to the layers. On Tuesday, August 12, 2014 6:26:15 PM