Re: [visualization-api] annotated timeline chart - adding roles

2015-11-24 Thread dude
seems like I managed to progress a bit using CoreChart: google.load('visualization', '1', {'packages':['corechart']}); and LIneChart Class: var chart = new google.visualization.LineChart(document.getElementById( 'chart_div')); Following your advise, I displayed the data in a table: NOTE:

Re: [visualization-api] annotated timeline chart - adding roles

2015-11-24 Thread 'Daniel LaLiberte' via Google Visualization API
Why not merge your two domains, the date columns, into one?Sort by the dates, and use null values in the series if you don't have values for all dates. And use interpolateNulls to connect lines across nulls. By the way, you can also get the mix of different types of plots, the lines and

Re: [visualization-api] annotated timeline chart - adding roles

2015-11-21 Thread dude
Thank you. I couldn't find within the documentation what is supported. Thank you for you suggestion - I'll implement. Just one more question: does LIneChart supports roles? and second domain role? How do you need to encode it into jsaon table (from PHP) - I tried adding the role using two

[visualization-api] annotated timeline chart - adding roles

2015-11-20 Thread dude
I'm trying to plot an annotated timeline using two data sources. However adding roles is not recognised by the chart - the columns with role interval are plotted as lines on the cart. Here is the code from the index page: https://www.google.com/jsapi"; >

Re: [visualization-api] Annotated Timeline Chart

2015-01-09 Thread 'Daniel LaLiberte' via Google Visualization API
Here is an example that uses checkboxes to select which series to show: http://jsfiddle.net/dlaliberte/a3cgLkq6/ This is for a LineChart, but something similar will work with the AnnotationChart. On Wed, Jan 7, 2015 at 5:11 AM, Enkhtuvshin Amgalanbayar enkhtuvshi...@gmail.com wrote: *Hello

Re: [visualization-api] Annotated Timeline Chart

2015-01-07 Thread Enkhtuvshin Amgalanbayar
*Hello Daniel.* *This is the script we have right now and it is working well thanks to your help. you can see from the attached picture.* script type=text/javascript

Re: [visualization-api] Annotated Timeline Chart

2015-01-06 Thread Enkhtuvshin Amgalanbayar
Thank you Daniel it was very helpful and the chart is doing well. Both date and time filters are working. We really appreciate your help. Because we want to demonstrate different currencies all around the world we wanted to do something like this. Please be kind and take look at attached

Re: [visualization-api] Annotated Timeline Chart

2015-01-05 Thread Enkhtuvshin Amgalanbayar
Greetings Daniel. Following is the copy of the script I have right now. BUT I AM NOT SURE WHERE TO EXACTLY PUT *VAR OPTIONS* WITHIN THE SCRIPT IN ORDER TO ADJUST DATE FORMAT AND EDIT THE ZOOM OPTIONS. Your advice is indeed appreciated Thank you script type=text/javascript

Re: [visualization-api] Annotated Timeline Chart

2015-01-05 Thread 'Daniel LaLiberte' via Google Visualization API
Like this: function drawVisualization() { * var options = {chart: { hAxis: {gridlines: { units: {days: { format: [ MM/dd/ ]} }} }* *}; * var wrap = new google.visualization.ChartWrapper({

Re: [visualization-api] Annotated Timeline Chart

2014-12-31 Thread 'Daniel LaLiberte' via Google Visualization API
Enkhtuvshin No, the value after the 'options:' should be just the variable options, if you move your var options = ... expression to before the ChartWrapper call. Like this: var options = ... var wrap = new google.visualization.ChartWrapper({ .. 'options': options } On Tue, Dec 30, 2014

Re: [visualization-api] Annotated Timeline Chart

2014-12-30 Thread 'Daniel LaLiberte' via Google Visualization API
The AnnotationChart uses the new date and time formatting, which has some customization options that are not yet documented. You can read about it in an earlier message thread:

Re: [visualization-api] Annotated Timeline Chart

2014-12-29 Thread Enkhtuvshin Amgalanbayar
Thank you it is very helpful indeed. My data is released once a day so I don't really need 1h filter. Do you know how I can remove 1h filter from the chart? Thank you again -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To

Re: [visualization-api] Annotated Timeline Chart

2014-12-29 Thread 'Daniel LaLiberte' via Google Visualization API
There is an undocumented 'zoomButtonsOrder' option that defaults to ['1-hour', '1-day', '5-days', '1-week', '1-month', '3-months', '6-months', '1-year', 'max']. Just leave out the '1-hour'. On Mon, Dec 29, 2014 at 9:28 AM, Enkhtuvshin Amgalanbayar enkhtuvshi...@gmail.com wrote: Thank you it

Re: [visualization-api] Annotated Timeline Chart

2014-12-29 Thread Enkhtuvshin Amgalanbayar
I am having difficulty with finding the zoom button option could you please be kind and give more info. Also the date is showing fully for ex. February 1, 2014. How could I make it a short date like 2/1/2014 Thank you again -- You received this message because you are

Re: [visualization-api] Annotated Timeline Chart

2014-12-29 Thread Enkhtuvshin Amgalanbayar
I have attached the script if you wouldn't mind taking a look at it -- 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

Re: [visualization-api] Annotated Timeline Chart

2014-12-27 Thread 'Daniel LaLiberte' via Google Visualization API
The Table chart is the most direct way to see whatever data you have requested from your google spreadsheet. https://developers.google.com/chart/interactive/docs/gallery/table There are a couple different ways to access the data to create a chart, partly documented on:

Re: [visualization-api] Annotated Timeline Chart

2014-12-26 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Enkhtuvshin and collegues You should have a look at the new AnnotationChart: https://developers.google.com/chart/interactive/docs/gallery/annotationchart which doesn't have the feature that you don't like about the old flash-based (and deprecated) AnnotatedTimeline. For both, it is possible

Re: [visualization-api] Annotated Timeline Chart

2014-12-26 Thread Enkhtuvshin Amgalanbayar
Thank you it helps a lot but I do have one more question. Is there any script or something like that where I can directly link the graph so that it will show the numbers that I have on my google spreadsheet. Thank you again -- You received this message because you are subscribed to the

[visualization-api] Annotated Timeline Chart

2014-12-25 Thread Enkhtuvshin Amgalanbayar
Hello. Me and my colleague have been trying to create an Annotated TimeLine Chart that demonstrates currency rate changes over course of the time. Unfortunately, we have encountered couple of issues. 1. On the Y-Axis all the numbers above 1,000 are shown as 1K, 1.5K, 2K etc... We would

[visualization-api] Annotated Timeline chart

2011-05-29 Thread MrsBean
I've been tinkering with the annotated timeline chart. I want to add input boxes for start date and end date, but I haven't figured out what that is called or where it goes. An example of the chart I want to build is at http://www.google.com/finance?q=INDEXSP%3A.INX How do I add the date

[visualization-api] Annotated Timeline Chart Does not render with Internet Explorer 8

2009-10-02 Thread AlanB
I implemented an annotated timeline chart that successfully renders with the Mozilla and Chrome browsers. But it fails to render with Internet Explore 8. Has anyone else experienced this problem? Is there a fix --~--~-~--~~~---~--~~ You received this message