Re: [visualization-api] Annotation Charts

2016-04-22 Thread 'Daniel LaLiberte' via Google Visualization API
There may be some timing issues, so in your event handler, perhaps you
should do the chart.draw() call in a timeout.

But I would not be surprised if drawing also triggers rangechange, which
would result in an infinite loop if your rangechange handler always calls
draw.  Perhaps this event should be surpressed on draw() because it is not
particularly useful.  As a workaround, you'll have to use a flag to tell
whether the handler is being called the first time (in which case, don't
draw()), or subsequent times.

I see that your 'ready' event handler is removing the handler, which is
good, otherwise you will be adding a new handler each time.  You might want
to use addOneTimeListener to do that for you.

On Thu, Apr 21, 2016 at 3:01 PM, Shamoun Ilyas  wrote:

> i tried using the following bit of code, to achieve the desired results
>
> function rangechange_handler(e) {
> //find start & end date
> var start = e.start;
> var end = e.end;
> document.getElementById("s1").innerHTML = start;
> // price of stock 1 on start date
> var b1 = data.getValue(data.getFilteredRows([{column: 0, minValue:
> start}])[0], 1);
> // price of stock 2 on start date
> var b2 = data.getValue(data.getFilteredRows([{ column: 0, minValue:
> start}])[0], 2);
> // create a view
> var view = new google.visualization.DataView(data);
> // Set column values
> view.setColumns([0, {
> type: 'number',
> label: '',
> calc: function(dataTable, rownum) {
> return Math.round(dataTable.getValue(rownum,1)*100/b1)/100;
> }},
> {
> type: 'number',
> label: '',
> calc: function(dataTable, rownum) {
> return Math.round(dataTable.getValue(rownum,2)*100/b2)/100;
> }}]);
> var ready = google.visualization.events.addListener(chart, 'ready',
> function () {
> chart.setVisibleChartRange(start, end);
> google.visualization.events.removeListener(ready);
> });
> chart.draw(view, options);
>
> }
>
> this i 'think' is working.. but is causing the page to freeze. I suspect
> because of the re-calculation under setColumn. I get the following error:
>
> "maximum call stack size exceeded"
>
> any thoughts?
>
> On Thursday, 21 April 2016 09:37:02 UTC+5, Shamoun Ilyas wrote:
>
>> That is what i am trying to do with little luck. Going back to the
>> database is inefficient.
>>
>> On Wednesday, 20 April 2016 22:54:49 UTC+5, Daniel LaLiberte wrote:
>>>
>>> It would be better, faster anyway, if you could do the recomputation in
>>> the browser, probably by generating a DataView.  For each changerange
>>> event, generate the new data and call draw() on the chart again.  If this
>>> ends up being slow, I have some ideas on how to speed it up.
>>>
>>> On Wed, Apr 20, 2016 at 12:55 PM, Shamoun Ilyas 
>>> wrote:
>>>
 thank you daniel for the solution re: the zoom buttons.

 Yes, i have read on the group that others have requested similar
 feature before. I saw this old thread, where an event handler was used to
 get the desired result in Annotation Timeline chart. Thought maybe a
 similar work around could be done in the AnnotationChart

 Recomputing the data would only work correctly if somehow i could query
 back my MySQL database based on my range selector. I don't if a date
 parameter can be passed from range selector to the database?



 On Wednesday, 20 April 2016 20:58:57 UTC+5, Daniel LaLiberte wrote:
>
> Here is the change of the zoom buttons:
> https://jsfiddle.net/dlaliberte/4gdzcLLm/2/
>
> To get the scaling you want relative to the first y-axis value, you
> would have to recompute the data yourself.  But then that would not work
> correctly with the range selector, which assumes the data is static.
>
> Others have requested a similar feature, where multiple series are all
> rescaled to be relative to the first value, so you can see the changes
> relative to that common starting point. It would be a useful feature to
> support, but it is not possible today, not without changing the data
> yourself.
>
>
> On Wed, Apr 20, 2016 at 10:27 AM, Daniel LaLiberte <
> dlali...@google.com> wrote:
>
>> Here is your code working:
>> https://jsfiddle.net/dlaliberte/4gdzcLLm/1/
>> You have to change the jsfiddle hidden feature under the javascript
>> configuration button so that it doesn't run onload.
>> Your requested features are probably doable, and I'll update in an
>> hour.
>>
>> On Wed, Apr 20, 2016 at 10:18 AM, Shamoun Ilyas 
>> wrote:
>>
>>> here you go
>>>
>>> https://jsfiddle.net/shamoun/4gdzcLLm/
>>>
>>> 1. Need to get rid of the 1h, 1d & 5d buttons
>>> 2. I want the values to be a % of the first y-axis value of the
>>> graph. So when we access the 'rangechanger', the first value should
>>> dynamically change to 1.
>>>
>>> Thanks for your help
>>>
>>> On Wednesday, 20 April 2016 

Re: [visualization-api] Annotation Charts

2016-04-21 Thread Shamoun Ilyas
i tried using the following bit of code, to achieve the desired results

function rangechange_handler(e) {
//find start & end date
var start = e.start;
var end = e.end;
document.getElementById("s1").innerHTML = start;
// price of stock 1 on start date
var b1 = data.getValue(data.getFilteredRows([{column: 0, minValue: 
start}])[0], 1);
// price of stock 2 on start date
var b2 = data.getValue(data.getFilteredRows([{ column: 0, minValue: 
start}])[0], 2); 
// create a view
var view = new google.visualization.DataView(data); 
// Set column values
view.setColumns([0, {
type: 'number',
label: '',
calc: function(dataTable, rownum) {
return Math.round(dataTable.getValue(rownum,1)*100/b1)/100;
}},
{
type: 'number',
label: '',
calc: function(dataTable, rownum) {
return Math.round(dataTable.getValue(rownum,2)*100/b2)/100;
}}]);
var ready = google.visualization.events.addListener(chart, 'ready', 
function () {
chart.setVisibleChartRange(start, end);
google.visualization.events.removeListener(ready);
});
chart.draw(view, options);

}

this i 'think' is working.. but is causing the page to freeze. I suspect 
because of the re-calculation under setColumn. I get the following error:

"maximum call stack size exceeded"

any thoughts?

On Thursday, 21 April 2016 09:37:02 UTC+5, Shamoun Ilyas wrote:
>
> That is what i am trying to do with little luck. Going back to the 
> database is inefficient.
>
> On Wednesday, 20 April 2016 22:54:49 UTC+5, Daniel LaLiberte wrote:
>>
>> It would be better, faster anyway, if you could do the recomputation in 
>> the browser, probably by generating a DataView.  For each changerange 
>> event, generate the new data and call draw() on the chart again.  If this 
>> ends up being slow, I have some ideas on how to speed it up.
>>
>> On Wed, Apr 20, 2016 at 12:55 PM, Shamoun Ilyas  wrote:
>>
>>> thank you daniel for the solution re: the zoom buttons.
>>>
>>> Yes, i have read on the group that others have requested similar feature 
>>> before. I saw this old thread, where an event handler was used to get the 
>>> desired result in Annotation Timeline chart. Thought maybe a similar work 
>>> around could be done in the AnnotationChart
>>>
>>> Recomputing the data would only work correctly if somehow i could query 
>>> back my MySQL database based on my range selector. I don't if a date 
>>> parameter can be passed from range selector to the database?
>>>
>>>
>>>
>>> On Wednesday, 20 April 2016 20:58:57 UTC+5, Daniel LaLiberte wrote:

 Here is the change of the zoom buttons:  
 https://jsfiddle.net/dlaliberte/4gdzcLLm/2/

 To get the scaling you want relative to the first y-axis value, you 
 would have to recompute the data yourself.  But then that would not work 
 correctly with the range selector, which assumes the data is static.  

 Others have requested a similar feature, where multiple series are all 
 rescaled to be relative to the first value, so you can see the changes 
 relative to that common starting point. It would be a useful feature to 
 support, but it is not possible today, not without changing the data 
 yourself.


 On Wed, Apr 20, 2016 at 10:27 AM, Daniel LaLiberte  wrote:

> Here is your code working: https://jsfiddle.net/dlaliberte/4gdzcLLm/1/
> You have to change the jsfiddle hidden feature under the javascript 
> configuration button so that it doesn't run onload.
> Your requested features are probably doable, and I'll update in an 
> hour.
>
> On Wed, Apr 20, 2016 at 10:18 AM, Shamoun Ilyas  
> wrote:
>
>> here you go
>>
>> https://jsfiddle.net/shamoun/4gdzcLLm/
>>
>> 1. Need to get rid of the 1h, 1d & 5d buttons
>> 2. I want the values to be a % of the first y-axis value of the 
>> graph. So when we access the 'rangechanger', the first value should 
>> dynamically change to 1.
>>
>> Thanks for your help
>>
>> On Wednesday, 20 April 2016 18:37:08 UTC+5, Daniel LaLiberte wrote:
>>>
>>> Hi Shamoun,
>>>
>>> Can you give us a link to your page so we can see what is going on?
>>>
>>> The other thread you linked to discusses several things.  Which 
>>> thing are you interested in?  The AnnotationChart should be a drop-in 
>>> replacement for the AnnotatedTimeline, however, so try it.
>>>
>>>
>>> On Wed, Apr 20, 2016 at 9:10 AM, Shamoun Ilyas  
>>> wrote:
>>>
 Daniel,

 I wasnt able to access the undocument options re; Zoom Buttons that 
 you suggest. Can you help me out there with the code.

 Also, I am trying to implement something similar to this thread

 https://groups.google.com/forum/#!searchin/google-visualization-api/annotated$20charts$20index$20date/google-visualization-api/Vz2YAHVOx_E/0TTkRccRqkgJ

Re: [visualization-api] Annotation Charts

2016-04-21 Thread Shamoun Ilyas
i tried using the following bit of code, to achieve the desired results

function rangechange_handler(e) {
//find start & end date
var start = e.start;
var end = e.end;
document.getElementById("s1").innerHTML = start;
// price of stock 1 on start date
var b1 = data.getValue(data.getFilteredRows([{column: 0, minValue: 
start}])[0], 1);
// price of stock 2 on start date
var b2 = data.getValue(data.getFilteredRows([{ column: 0, minValue: 
start}])[0], 2); 
// create a view
var view = new google.visualization.DataView(data); 
// Set column values
view.setColumns([0, {
type: 'number',
label: '',
calc: function(dataTable, rownum) {
return Math.round(dataTable.getValue(rownum,1)*100/b1)/100;
}},
{
type: 'number',
label: '',
calc: function(dataTable, rownum) {
return Math.round(dataTable.getValue(rownum,2)*100/b2)/100;
}}]);
var b3 = view.getValue(view.getFilteredRows([{column: 0, minValue: 
start}])[0], 1);
document.getElementById("s2").innerHTML = b3;
var ready = google.visualization.events.addListener(chart, 'ready', 
function () {
chart.setVisibleChartRange(start, end);
google.visualization.events.removeListener(ready);
});
chart.draw(view, options);

}

this i 'think' is working.. but is causing the page to freeze. I suspect 
because of the re-calculation under setColumn. I get the following error:

"maximum call stack size exceeded"

any thoughts?

On Thursday, 21 April 2016 09:37:02 UTC+5, Shamoun Ilyas wrote:
>
> That is what i am trying to do with little luck. Going back to the 
> database is inefficient.
>
> On Wednesday, 20 April 2016 22:54:49 UTC+5, Daniel LaLiberte wrote:
>>
>> It would be better, faster anyway, if you could do the recomputation in 
>> the browser, probably by generating a DataView.  For each changerange 
>> event, generate the new data and call draw() on the chart again.  If this 
>> ends up being slow, I have some ideas on how to speed it up.
>>
>> On Wed, Apr 20, 2016 at 12:55 PM, Shamoun Ilyas  wrote:
>>
>>> thank you daniel for the solution re: the zoom buttons.
>>>
>>> Yes, i have read on the group that others have requested similar feature 
>>> before. I saw this old thread, where an event handler was used to get the 
>>> desired result in Annotation Timeline chart. Thought maybe a similar work 
>>> around could be done in the AnnotationChart
>>>
>>> Recomputing the data would only work correctly if somehow i could query 
>>> back my MySQL database based on my range selector. I don't if a date 
>>> parameter can be passed from range selector to the database?
>>>
>>>
>>>
>>> On Wednesday, 20 April 2016 20:58:57 UTC+5, Daniel LaLiberte wrote:

 Here is the change of the zoom buttons:  
 https://jsfiddle.net/dlaliberte/4gdzcLLm/2/

 To get the scaling you want relative to the first y-axis value, you 
 would have to recompute the data yourself.  But then that would not work 
 correctly with the range selector, which assumes the data is static.  

 Others have requested a similar feature, where multiple series are all 
 rescaled to be relative to the first value, so you can see the changes 
 relative to that common starting point. It would be a useful feature to 
 support, but it is not possible today, not without changing the data 
 yourself.


 On Wed, Apr 20, 2016 at 10:27 AM, Daniel LaLiberte  wrote:

> Here is your code working: https://jsfiddle.net/dlaliberte/4gdzcLLm/1/
> You have to change the jsfiddle hidden feature under the javascript 
> configuration button so that it doesn't run onload.
> Your requested features are probably doable, and I'll update in an 
> hour.
>
> On Wed, Apr 20, 2016 at 10:18 AM, Shamoun Ilyas  
> wrote:
>
>> here you go
>>
>> https://jsfiddle.net/shamoun/4gdzcLLm/
>>
>> 1. Need to get rid of the 1h, 1d & 5d buttons
>> 2. I want the values to be a % of the first y-axis value of the 
>> graph. So when we access the 'rangechanger', the first value should 
>> dynamically change to 1.
>>
>> Thanks for your help
>>
>> On Wednesday, 20 April 2016 18:37:08 UTC+5, Daniel LaLiberte wrote:
>>>
>>> Hi Shamoun,
>>>
>>> Can you give us a link to your page so we can see what is going on?
>>>
>>> The other thread you linked to discusses several things.  Which 
>>> thing are you interested in?  The AnnotationChart should be a drop-in 
>>> replacement for the AnnotatedTimeline, however, so try it.
>>>
>>>
>>> On Wed, Apr 20, 2016 at 9:10 AM, Shamoun Ilyas  
>>> wrote:
>>>
 Daniel,

 I wasnt able to access the undocument options re; Zoom Buttons that 
 you suggest. Can you help me out there with the code.

 Also, I am trying to implement something similar to this thread

 

Re: [visualization-api] Annotation Charts

2016-04-20 Thread Shamoun Ilyas
That is what i am trying to do with little luck. Going back to the database 
is inefficient.

On Wednesday, 20 April 2016 22:54:49 UTC+5, Daniel LaLiberte wrote:
>
> It would be better, faster anyway, if you could do the recomputation in 
> the browser, probably by generating a DataView.  For each changerange 
> event, generate the new data and call draw() on the chart again.  If this 
> ends up being slow, I have some ideas on how to speed it up.
>
> On Wed, Apr 20, 2016 at 12:55 PM, Shamoun Ilyas  > wrote:
>
>> thank you daniel for the solution re: the zoom buttons.
>>
>> Yes, i have read on the group that others have requested similar feature 
>> before. I saw this old thread, where an event handler was used to get the 
>> desired result in Annotation Timeline chart. Thought maybe a similar work 
>> around could be done in the AnnotationChart
>>
>> Recomputing the data would only work correctly if somehow i could query 
>> back my MySQL database based on my range selector. I don't if a date 
>> parameter can be passed from range selector to the database?
>>
>>
>>
>> On Wednesday, 20 April 2016 20:58:57 UTC+5, Daniel LaLiberte wrote:
>>>
>>> Here is the change of the zoom buttons:  
>>> https://jsfiddle.net/dlaliberte/4gdzcLLm/2/
>>>
>>> To get the scaling you want relative to the first y-axis value, you 
>>> would have to recompute the data yourself.  But then that would not work 
>>> correctly with the range selector, which assumes the data is static.  
>>>
>>> Others have requested a similar feature, where multiple series are all 
>>> rescaled to be relative to the first value, so you can see the changes 
>>> relative to that common starting point. It would be a useful feature to 
>>> support, but it is not possible today, not without changing the data 
>>> yourself.
>>>
>>>
>>> On Wed, Apr 20, 2016 at 10:27 AM, Daniel LaLiberte  
>>> wrote:
>>>
 Here is your code working: https://jsfiddle.net/dlaliberte/4gdzcLLm/1/
 You have to change the jsfiddle hidden feature under the javascript 
 configuration button so that it doesn't run onload.
 Your requested features are probably doable, and I'll update in an hour.

 On Wed, Apr 20, 2016 at 10:18 AM, Shamoun Ilyas  
 wrote:

> here you go
>
> https://jsfiddle.net/shamoun/4gdzcLLm/
>
> 1. Need to get rid of the 1h, 1d & 5d buttons
> 2. I want the values to be a % of the first y-axis value of the graph. 
> So when we access the 'rangechanger', the first value should dynamically 
> change to 1.
>
> Thanks for your help
>
> On Wednesday, 20 April 2016 18:37:08 UTC+5, Daniel LaLiberte wrote:
>>
>> Hi Shamoun,
>>
>> Can you give us a link to your page so we can see what is going on?
>>
>> The other thread you linked to discusses several things.  Which thing 
>> are you interested in?  The AnnotationChart should be a drop-in 
>> replacement 
>> for the AnnotatedTimeline, however, so try it.
>>
>>
>> On Wed, Apr 20, 2016 at 9:10 AM, Shamoun Ilyas  
>> wrote:
>>
>>> Daniel,
>>>
>>> I wasnt able to access the undocument options re; Zoom Buttons that 
>>> you suggest. Can you help me out there with the code.
>>>
>>> Also, I am trying to implement something similar to this thread
>>>
>>> https://groups.google.com/forum/#!searchin/google-visualization-api/annotated$20charts$20index$20date/google-visualization-api/Vz2YAHVOx_E/0TTkRccRqkgJ
>>>
>>> but that was done with the Annotated Timeline Chart. I was not able 
>>> to replicate the desired effect with the AnnotationChart. Is it 
>>> possible to 
>>> do through an event handler like they have done?
>>>
>>> Thanks again for your help.
>>>
>>> On Friday, 15 April 2016 15:54:42 UTC+5, Daniel LaLiberte wrote:

 Hi Shamoun,

 As a matter of fact, the Dashboard 'bind' feature is used 
 internally in AnnotationChart.  It was actually implemented as a 
 Dashboard 
 first, and then wrapped with a chart API.  And we have been thinking 
 about 
 how to do that kind of wrapping more easily using a ChartWrapper.

 There are a couple of undocumented options regarding the zoom 
 buttons, if you want to customize them:  
 https://groups.google.com/d/msg/google-visualization-api/pzZoRUn5oLA/RQs6RSeJXr4J

 Enjoy.

 On Fri, Apr 15, 2016 at 1:20 AM, Shamoun Ilyas  
 wrote:

> Also, if you could advise- it is possible to remove the 1h & 1d 
> zoom buttons from the chart and leave the remaining? Thanks
>
> On Friday, 15 April 2016 09:58:07 UTC+5, Shamoun Ilyas wrote:
>>
>> Thank you Daniel for you reply. Thanks i will try the volume 
>> chart 

Re: [visualization-api] Annotation Charts

2016-04-20 Thread 'Daniel LaLiberte' via Google Visualization API
It would be better, faster anyway, if you could do the recomputation in the
browser, probably by generating a DataView.  For each changerange event,
generate the new data and call draw() on the chart again.  If this ends up
being slow, I have some ideas on how to speed it up.

On Wed, Apr 20, 2016 at 12:55 PM, Shamoun Ilyas  wrote:

> thank you daniel for the solution re: the zoom buttons.
>
> Yes, i have read on the group that others have requested similar feature
> before. I saw this old thread, where an event handler was used to get the
> desired result in Annotation Timeline chart. Thought maybe a similar work
> around could be done in the AnnotationChart
>
> Recomputing the data would only work correctly if somehow i could query
> back my MySQL database based on my range selector. I don't if a date
> parameter can be passed from range selector to the database?
>
>
>
> On Wednesday, 20 April 2016 20:58:57 UTC+5, Daniel LaLiberte wrote:
>>
>> Here is the change of the zoom buttons:
>> https://jsfiddle.net/dlaliberte/4gdzcLLm/2/
>>
>> To get the scaling you want relative to the first y-axis value, you would
>> have to recompute the data yourself.  But then that would not work
>> correctly with the range selector, which assumes the data is static.
>>
>> Others have requested a similar feature, where multiple series are all
>> rescaled to be relative to the first value, so you can see the changes
>> relative to that common starting point. It would be a useful feature to
>> support, but it is not possible today, not without changing the data
>> yourself.
>>
>>
>> On Wed, Apr 20, 2016 at 10:27 AM, Daniel LaLiberte 
>> wrote:
>>
>>> Here is your code working: https://jsfiddle.net/dlaliberte/4gdzcLLm/1/
>>> You have to change the jsfiddle hidden feature under the javascript
>>> configuration button so that it doesn't run onload.
>>> Your requested features are probably doable, and I'll update in an hour.
>>>
>>> On Wed, Apr 20, 2016 at 10:18 AM, Shamoun Ilyas 
>>> wrote:
>>>
 here you go

 https://jsfiddle.net/shamoun/4gdzcLLm/

 1. Need to get rid of the 1h, 1d & 5d buttons
 2. I want the values to be a % of the first y-axis value of the graph.
 So when we access the 'rangechanger', the first value should dynamically
 change to 1.

 Thanks for your help

 On Wednesday, 20 April 2016 18:37:08 UTC+5, Daniel LaLiberte wrote:
>
> Hi Shamoun,
>
> Can you give us a link to your page so we can see what is going on?
>
> The other thread you linked to discusses several things.  Which thing
> are you interested in?  The AnnotationChart should be a drop-in 
> replacement
> for the AnnotatedTimeline, however, so try it.
>
>
> On Wed, Apr 20, 2016 at 9:10 AM, Shamoun Ilyas 
> wrote:
>
>> Daniel,
>>
>> I wasnt able to access the undocument options re; Zoom Buttons that
>> you suggest. Can you help me out there with the code.
>>
>> Also, I am trying to implement something similar to this thread
>>
>> https://groups.google.com/forum/#!searchin/google-visualization-api/annotated$20charts$20index$20date/google-visualization-api/Vz2YAHVOx_E/0TTkRccRqkgJ
>>
>> but that was done with the Annotated Timeline Chart. I was not able
>> to replicate the desired effect with the AnnotationChart. Is it possible 
>> to
>> do through an event handler like they have done?
>>
>> Thanks again for your help.
>>
>> On Friday, 15 April 2016 15:54:42 UTC+5, Daniel LaLiberte wrote:
>>>
>>> Hi Shamoun,
>>>
>>> As a matter of fact, the Dashboard 'bind' feature is used internally
>>> in AnnotationChart.  It was actually implemented as a Dashboard first, 
>>> and
>>> then wrapped with a chart API.  And we have been thinking about how to 
>>> do
>>> that kind of wrapping more easily using a ChartWrapper.
>>>
>>> There are a couple of undocumented options regarding the zoom
>>> buttons, if you want to customize them:
>>> https://groups.google.com/d/msg/google-visualization-api/pzZoRUn5oLA/RQs6RSeJXr4J
>>>
>>> Enjoy.
>>>
>>> On Fri, Apr 15, 2016 at 1:20 AM, Shamoun Ilyas 
>>> wrote:
>>>
 Also, if you could advise- it is possible to remove the 1h & 1d
 zoom buttons from the chart and leave the remaining? Thanks

 On Friday, 15 April 2016 09:58:07 UTC+5, Shamoun Ilyas wrote:
>
> Thank you Daniel for you reply. Thanks i will try the volume chart
> on a different vertical axis. Ideally, I was looking for a whole 
> separate
> chart within the AnnotationChart- something like the 'bind' feature 
> you
> have in ChartWrapper. Thanks once again.
>
> On Friday, 15 April 2016 00:45:00 UTC+5, Daniel LaLiberte wrote:
>>

Re: [visualization-api] Annotation Charts

2016-04-20 Thread Shamoun Ilyas
thank you daniel for the solution re: the zoom buttons.

Yes, i have read on the group that others have requested similar feature 
before. I saw this old thread, where an event handler was used to get the 
desired result in Annotation Timeline chart. Thought maybe a similar work 
around could be done in the AnnotationChart

Recomputing the data would only work correctly if somehow i could query 
back my MySQL database based on my range selector. I don't if a date 
parameter can be passed from range selector to the database?



On Wednesday, 20 April 2016 20:58:57 UTC+5, Daniel LaLiberte wrote:
>
> Here is the change of the zoom buttons:  
> https://jsfiddle.net/dlaliberte/4gdzcLLm/2/
>
> To get the scaling you want relative to the first y-axis value, you would 
> have to recompute the data yourself.  But then that would not work 
> correctly with the range selector, which assumes the data is static.  
>
> Others have requested a similar feature, where multiple series are all 
> rescaled to be relative to the first value, so you can see the changes 
> relative to that common starting point. It would be a useful feature to 
> support, but it is not possible today, not without changing the data 
> yourself.
>
>
> On Wed, Apr 20, 2016 at 10:27 AM, Daniel LaLiberte  > wrote:
>
>> Here is your code working: https://jsfiddle.net/dlaliberte/4gdzcLLm/1/
>> You have to change the jsfiddle hidden feature under the javascript 
>> configuration button so that it doesn't run onload.
>> Your requested features are probably doable, and I'll update in an hour.
>>
>> On Wed, Apr 20, 2016 at 10:18 AM, Shamoun Ilyas > > wrote:
>>
>>> here you go
>>>
>>> https://jsfiddle.net/shamoun/4gdzcLLm/
>>>
>>> 1. Need to get rid of the 1h, 1d & 5d buttons
>>> 2. I want the values to be a % of the first y-axis value of the graph. 
>>> So when we access the 'rangechanger', the first value should dynamically 
>>> change to 1.
>>>
>>> Thanks for your help
>>>
>>> On Wednesday, 20 April 2016 18:37:08 UTC+5, Daniel LaLiberte wrote:

 Hi Shamoun,

 Can you give us a link to your page so we can see what is going on?

 The other thread you linked to discusses several things.  Which thing 
 are you interested in?  The AnnotationChart should be a drop-in 
 replacement 
 for the AnnotatedTimeline, however, so try it.


 On Wed, Apr 20, 2016 at 9:10 AM, Shamoun Ilyas  
 wrote:

> Daniel,
>
> I wasnt able to access the undocument options re; Zoom Buttons that 
> you suggest. Can you help me out there with the code.
>
> Also, I am trying to implement something similar to this thread
>
> https://groups.google.com/forum/#!searchin/google-visualization-api/annotated$20charts$20index$20date/google-visualization-api/Vz2YAHVOx_E/0TTkRccRqkgJ
>
> but that was done with the Annotated Timeline Chart. I was not able to 
> replicate the desired effect with the AnnotationChart. Is it possible to 
> do 
> through an event handler like they have done?
>
> Thanks again for your help.
>
> On Friday, 15 April 2016 15:54:42 UTC+5, Daniel LaLiberte wrote:
>>
>> Hi Shamoun,
>>
>> As a matter of fact, the Dashboard 'bind' feature is used internally 
>> in AnnotationChart.  It was actually implemented as a Dashboard first, 
>> and 
>> then wrapped with a chart API.  And we have been thinking about how to 
>> do 
>> that kind of wrapping more easily using a ChartWrapper.
>>
>> There are a couple of undocumented options regarding the zoom buttons, 
>> if you want to customize them:  
>> https://groups.google.com/d/msg/google-visualization-api/pzZoRUn5oLA/RQs6RSeJXr4J
>>
>> Enjoy.
>>
>> On Fri, Apr 15, 2016 at 1:20 AM, Shamoun Ilyas  
>> wrote:
>>
>>> Also, if you could advise- it is possible to remove the 1h & 1d zoom 
>>> buttons from the chart and leave the remaining? Thanks
>>>
>>> On Friday, 15 April 2016 09:58:07 UTC+5, Shamoun Ilyas wrote:

 Thank you Daniel for you reply. Thanks i will try the volume chart 
 on a different vertical axis. Ideally, I was looking for a whole 
 separate 
 chart within the AnnotationChart- something like the 'bind' feature 
 you 
 have in ChartWrapper. Thanks once again.

 On Friday, 15 April 2016 00:45:00 UTC+5, Daniel LaLiberte wrote:
>
> The main chart in the AnnotationChart is actually just a 
> ComboChart.  You can give it options under a 'chart' option.  You can 
> target a different vertical axis for the volume chart, and arrange 
> that it 
> shows up mostly in the bottom area.  But you can't add a whole 
> separate 
> chart within the AnnotationChart, though that would be a good idea.
>
> On 

Re: [visualization-api] Annotation Charts

2016-04-20 Thread 'Daniel LaLiberte' via Google Visualization API
Here is the change of the zoom buttons:
https://jsfiddle.net/dlaliberte/4gdzcLLm/2/

To get the scaling you want relative to the first y-axis value, you would
have to recompute the data yourself.  But then that would not work
correctly with the range selector, which assumes the data is static.

Others have requested a similar feature, where multiple series are all
rescaled to be relative to the first value, so you can see the changes
relative to that common starting point. It would be a useful feature to
support, but it is not possible today, not without changing the data
yourself.


On Wed, Apr 20, 2016 at 10:27 AM, Daniel LaLiberte 
wrote:

> Here is your code working: https://jsfiddle.net/dlaliberte/4gdzcLLm/1/
> You have to change the jsfiddle hidden feature under the javascript
> configuration button so that it doesn't run onload.
> Your requested features are probably doable, and I'll update in an hour.
>
> On Wed, Apr 20, 2016 at 10:18 AM, Shamoun Ilyas  wrote:
>
>> here you go
>>
>> https://jsfiddle.net/shamoun/4gdzcLLm/
>>
>> 1. Need to get rid of the 1h, 1d & 5d buttons
>> 2. I want the values to be a % of the first y-axis value of the graph. So
>> when we access the 'rangechanger', the first value should dynamically
>> change to 1.
>>
>> Thanks for your help
>>
>> On Wednesday, 20 April 2016 18:37:08 UTC+5, Daniel LaLiberte wrote:
>>>
>>> Hi Shamoun,
>>>
>>> Can you give us a link to your page so we can see what is going on?
>>>
>>> The other thread you linked to discusses several things.  Which thing
>>> are you interested in?  The AnnotationChart should be a drop-in replacement
>>> for the AnnotatedTimeline, however, so try it.
>>>
>>>
>>> On Wed, Apr 20, 2016 at 9:10 AM, Shamoun Ilyas  wrote:
>>>
 Daniel,

 I wasnt able to access the undocument options re; Zoom Buttons that you
 suggest. Can you help me out there with the code.

 Also, I am trying to implement something similar to this thread

 https://groups.google.com/forum/#!searchin/google-visualization-api/annotated$20charts$20index$20date/google-visualization-api/Vz2YAHVOx_E/0TTkRccRqkgJ

 but that was done with the Annotated Timeline Chart. I was not able to
 replicate the desired effect with the AnnotationChart. Is it possible to do
 through an event handler like they have done?

 Thanks again for your help.

 On Friday, 15 April 2016 15:54:42 UTC+5, Daniel LaLiberte wrote:
>
> Hi Shamoun,
>
> As a matter of fact, the Dashboard 'bind' feature is used internally
> in AnnotationChart.  It was actually implemented as a Dashboard first, and
> then wrapped with a chart API.  And we have been thinking about how to do
> that kind of wrapping more easily using a ChartWrapper.
>
> There are a couple of undocumented options regarding the zoom buttons,
> if you want to customize them:
> https://groups.google.com/d/msg/google-visualization-api/pzZoRUn5oLA/RQs6RSeJXr4J
>
> Enjoy.
>
> On Fri, Apr 15, 2016 at 1:20 AM, Shamoun Ilyas 
> wrote:
>
>> Also, if you could advise- it is possible to remove the 1h & 1d zoom
>> buttons from the chart and leave the remaining? Thanks
>>
>> On Friday, 15 April 2016 09:58:07 UTC+5, Shamoun Ilyas wrote:
>>>
>>> Thank you Daniel for you reply. Thanks i will try the volume chart
>>> on a different vertical axis. Ideally, I was looking for a whole 
>>> separate
>>> chart within the AnnotationChart- something like the 'bind' feature you
>>> have in ChartWrapper. Thanks once again.
>>>
>>> On Friday, 15 April 2016 00:45:00 UTC+5, Daniel LaLiberte wrote:

 The main chart in the AnnotationChart is actually just a
 ComboChart.  You can give it options under a 'chart' option.  You can
 target a different vertical axis for the volume chart, and arrange 
 that it
 shows up mostly in the bottom area.  But you can't add a whole separate
 chart within the AnnotationChart, though that would be a good idea.

 On Thu, Apr 14, 2016 at 3:51 AM, Shamoun Ilyas 
 wrote:

> I am trying to figure out if it is possible to make a stock price
> (chart type: line) & volume (chart type: column to area)- with the 
> chart
> range filter at the bottom. Not been able to figure it as yet. Is it 
> even
> possible? Any help would be appreciated. Thanks.
>
> --
> 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
> 

Re: [visualization-api] Annotation Charts

2016-04-20 Thread 'Daniel LaLiberte' via Google Visualization API
Here is your code working: https://jsfiddle.net/dlaliberte/4gdzcLLm/1/
You have to change the jsfiddle hidden feature under the javascript
configuration button so that it doesn't run onload.
Your requested features are probably doable, and I'll update in an hour.

On Wed, Apr 20, 2016 at 10:18 AM, Shamoun Ilyas  wrote:

> here you go
>
> https://jsfiddle.net/shamoun/4gdzcLLm/
>
> 1. Need to get rid of the 1h, 1d & 5d buttons
> 2. I want the values to be a % of the first y-axis value of the graph. So
> when we access the 'rangechanger', the first value should dynamically
> change to 1.
>
> Thanks for your help
>
> On Wednesday, 20 April 2016 18:37:08 UTC+5, Daniel LaLiberte wrote:
>>
>> Hi Shamoun,
>>
>> Can you give us a link to your page so we can see what is going on?
>>
>> The other thread you linked to discusses several things.  Which thing are
>> you interested in?  The AnnotationChart should be a drop-in replacement for
>> the AnnotatedTimeline, however, so try it.
>>
>>
>> On Wed, Apr 20, 2016 at 9:10 AM, Shamoun Ilyas  wrote:
>>
>>> Daniel,
>>>
>>> I wasnt able to access the undocument options re; Zoom Buttons that you
>>> suggest. Can you help me out there with the code.
>>>
>>> Also, I am trying to implement something similar to this thread
>>>
>>> https://groups.google.com/forum/#!searchin/google-visualization-api/annotated$20charts$20index$20date/google-visualization-api/Vz2YAHVOx_E/0TTkRccRqkgJ
>>>
>>> but that was done with the Annotated Timeline Chart. I was not able to
>>> replicate the desired effect with the AnnotationChart. Is it possible to do
>>> through an event handler like they have done?
>>>
>>> Thanks again for your help.
>>>
>>> On Friday, 15 April 2016 15:54:42 UTC+5, Daniel LaLiberte wrote:

 Hi Shamoun,

 As a matter of fact, the Dashboard 'bind' feature is used internally in
 AnnotationChart.  It was actually implemented as a Dashboard first, and
 then wrapped with a chart API.  And we have been thinking about how to do
 that kind of wrapping more easily using a ChartWrapper.

 There are a couple of undocumented options regarding the zoom buttons,
 if you want to customize them:
 https://groups.google.com/d/msg/google-visualization-api/pzZoRUn5oLA/RQs6RSeJXr4J

 Enjoy.

 On Fri, Apr 15, 2016 at 1:20 AM, Shamoun Ilyas 
 wrote:

> Also, if you could advise- it is possible to remove the 1h & 1d zoom
> buttons from the chart and leave the remaining? Thanks
>
> On Friday, 15 April 2016 09:58:07 UTC+5, Shamoun Ilyas wrote:
>>
>> Thank you Daniel for you reply. Thanks i will try the volume chart on
>> a different vertical axis. Ideally, I was looking for a whole separate
>> chart within the AnnotationChart- something like the 'bind' feature you
>> have in ChartWrapper. Thanks once again.
>>
>> On Friday, 15 April 2016 00:45:00 UTC+5, Daniel LaLiberte wrote:
>>>
>>> The main chart in the AnnotationChart is actually just a
>>> ComboChart.  You can give it options under a 'chart' option.  You can
>>> target a different vertical axis for the volume chart, and arrange that 
>>> it
>>> shows up mostly in the bottom area.  But you can't add a whole separate
>>> chart within the AnnotationChart, though that would be a good idea.
>>>
>>> On Thu, Apr 14, 2016 at 3:51 AM, Shamoun Ilyas 
>>> wrote:
>>>
 I am trying to figure out if it is possible to make a stock price
 (chart type: line) & volume (chart type: column to area)- with the 
 chart
 range filter at the bottom. Not been able to figure it as yet. Is it 
 even
 possible? Any help would be appreciated. Thanks.

 --
 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/8e1467a3-889b-4f62-aae2-19ea94cc5255%40googlegroups.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>>
>>>
>>>
>>> --
>>> Daniel LaLiberte
>>> 
>>> dlali...@google.com   5CC, Cambridge MA
>>>
>> --
> You received this message because you are subscribed to the 

Re: [visualization-api] Annotation Charts

2016-04-20 Thread Shamoun Ilyas
here you go

https://jsfiddle.net/shamoun/4gdzcLLm/

1. Need to get rid of the 1h, 1d & 5d buttons
2. I want the values to be a % of the first y-axis value of the graph. So 
when we access the 'rangechanger', the first value should dynamically 
change to 1.

Thanks for your help

On Wednesday, 20 April 2016 18:37:08 UTC+5, Daniel LaLiberte wrote:
>
> Hi Shamoun,
>
> Can you give us a link to your page so we can see what is going on?
>
> The other thread you linked to discusses several things.  Which thing are 
> you interested in?  The AnnotationChart should be a drop-in replacement for 
> the AnnotatedTimeline, however, so try it.
>
>
> On Wed, Apr 20, 2016 at 9:10 AM, Shamoun Ilyas  > wrote:
>
>> Daniel,
>>
>> I wasnt able to access the undocument options re; Zoom Buttons that you 
>> suggest. Can you help me out there with the code.
>>
>> Also, I am trying to implement something similar to this thread
>>
>> https://groups.google.com/forum/#!searchin/google-visualization-api/annotated$20charts$20index$20date/google-visualization-api/Vz2YAHVOx_E/0TTkRccRqkgJ
>>
>> but that was done with the Annotated Timeline Chart. I was not able to 
>> replicate the desired effect with the AnnotationChart. Is it possible to do 
>> through an event handler like they have done?
>>
>> Thanks again for your help.
>>
>> On Friday, 15 April 2016 15:54:42 UTC+5, Daniel LaLiberte wrote:
>>>
>>> Hi Shamoun,
>>>
>>> As a matter of fact, the Dashboard 'bind' feature is used internally in 
>>> AnnotationChart.  It was actually implemented as a Dashboard first, and 
>>> then wrapped with a chart API.  And we have been thinking about how to do 
>>> that kind of wrapping more easily using a ChartWrapper.
>>>
>>> There are a couple of undocumented options regarding the zoom buttons, 
>>> if you want to customize them:  
>>> https://groups.google.com/d/msg/google-visualization-api/pzZoRUn5oLA/RQs6RSeJXr4J
>>>
>>> Enjoy.
>>>
>>> On Fri, Apr 15, 2016 at 1:20 AM, Shamoun Ilyas  wrote:
>>>
 Also, if you could advise- it is possible to remove the 1h & 1d zoom 
 buttons from the chart and leave the remaining? Thanks

 On Friday, 15 April 2016 09:58:07 UTC+5, Shamoun Ilyas wrote:
>
> Thank you Daniel for you reply. Thanks i will try the volume chart on 
> a different vertical axis. Ideally, I was looking for a whole separate 
> chart within the AnnotationChart- something like the 'bind' feature you 
> have in ChartWrapper. Thanks once again.
>
> On Friday, 15 April 2016 00:45:00 UTC+5, Daniel LaLiberte wrote:
>>
>> The main chart in the AnnotationChart is actually just a ComboChart.  
>> You can give it options under a 'chart' option.  You can target a 
>> different 
>> vertical axis for the volume chart, and arrange that it shows up mostly 
>> in 
>> the bottom area.  But you can't add a whole separate chart within the 
>> AnnotationChart, though that would be a good idea.
>>
>> On Thu, Apr 14, 2016 at 3:51 AM, Shamoun Ilyas  
>> wrote:
>>
>>> I am trying to figure out if it is possible to make a stock price 
>>> (chart type: line) & volume (chart type: column to area)- with the 
>>> chart 
>>> range filter at the bottom. Not been able to figure it as yet. Is it 
>>> even 
>>> possible? Any help would be appreciated. Thanks.
>>>
>>> -- 
>>> 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/8e1467a3-889b-4f62-aae2-19ea94cc5255%40googlegroups.com
>>>  
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> -- 
>> Daniel LaLiberte 
>> 
>> dlali...@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-visua...@googlegroups.com.
 Visit this group at 
 https://groups.google.com/group/google-visualization-api.
 To view this discussion on the web 

Re: [visualization-api] Annotation Charts

2016-04-20 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Shamoun,

Can you give us a link to your page so we can see what is going on?

The other thread you linked to discusses several things.  Which thing are
you interested in?  The AnnotationChart should be a drop-in replacement for
the AnnotatedTimeline, however, so try it.


On Wed, Apr 20, 2016 at 9:10 AM, Shamoun Ilyas  wrote:

> Daniel,
>
> I wasnt able to access the undocument options re; Zoom Buttons that you
> suggest. Can you help me out there with the code.
>
> Also, I am trying to implement something similar to this thread
>
> https://groups.google.com/forum/#!searchin/google-visualization-api/annotated$20charts$20index$20date/google-visualization-api/Vz2YAHVOx_E/0TTkRccRqkgJ
>
> but that was done with the Annotated Timeline Chart. I was not able to
> replicate the desired effect with the AnnotationChart. Is it possible to do
> through an event handler like they have done?
>
> Thanks again for your help.
>
> On Friday, 15 April 2016 15:54:42 UTC+5, Daniel LaLiberte wrote:
>>
>> Hi Shamoun,
>>
>> As a matter of fact, the Dashboard 'bind' feature is used internally in
>> AnnotationChart.  It was actually implemented as a Dashboard first, and
>> then wrapped with a chart API.  And we have been thinking about how to do
>> that kind of wrapping more easily using a ChartWrapper.
>>
>> There are a couple of undocumented options regarding the zoom buttons,
>> if you want to customize them:
>> https://groups.google.com/d/msg/google-visualization-api/pzZoRUn5oLA/RQs6RSeJXr4J
>>
>> Enjoy.
>>
>> On Fri, Apr 15, 2016 at 1:20 AM, Shamoun Ilyas  wrote:
>>
>>> Also, if you could advise- it is possible to remove the 1h & 1d zoom
>>> buttons from the chart and leave the remaining? Thanks
>>>
>>> On Friday, 15 April 2016 09:58:07 UTC+5, Shamoun Ilyas wrote:

 Thank you Daniel for you reply. Thanks i will try the volume chart on a
 different vertical axis. Ideally, I was looking for a whole separate chart
 within the AnnotationChart- something like the 'bind' feature you have in
 ChartWrapper. Thanks once again.

 On Friday, 15 April 2016 00:45:00 UTC+5, Daniel LaLiberte wrote:
>
> The main chart in the AnnotationChart is actually just a ComboChart.
> You can give it options under a 'chart' option.  You can target a 
> different
> vertical axis for the volume chart, and arrange that it shows up mostly in
> the bottom area.  But you can't add a whole separate chart within the
> AnnotationChart, though that would be a good idea.
>
> On Thu, Apr 14, 2016 at 3:51 AM, Shamoun Ilyas 
> wrote:
>
>> I am trying to figure out if it is possible to make a stock price
>> (chart type: line) & volume (chart type: column to area)- with the chart
>> range filter at the bottom. Not been able to figure it as yet. Is it even
>> possible? Any help would be appreciated. Thanks.
>>
>> --
>> 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/8e1467a3-889b-4f62-aae2-19ea94cc5255%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
> Daniel LaLiberte
> 
> dlali...@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-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/8b95ced3-4768-42fb-8af8-1c0ee0e7e2c7%40googlegroups.com
>>> 
>>> .
>>>
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> Daniel LaLiberte 
>> dlali...@google.com   5CC, Cambridge MA
>>
> --
> You received this message because you 

Re: [visualization-api] Annotation Charts

2016-04-20 Thread Shamoun Ilyas
Daniel,

I wasnt able to access the undocument options re; Zoom Buttons that you 
suggest. Can you help me out there with the code.

Also, I am trying to implement something similar to this thread
https://groups.google.com/forum/#!searchin/google-visualization-api/annotated$20charts$20index$20date/google-visualization-api/Vz2YAHVOx_E/0TTkRccRqkgJ

but that was done with the Annotated Timeline Chart. I was not able to 
replicate the desired effect with the AnnotationChart. Is it possible to do 
through an event handler like they have done?

Thanks again for your help.

On Friday, 15 April 2016 15:54:42 UTC+5, Daniel LaLiberte wrote:
>
> Hi Shamoun,
>
> As a matter of fact, the Dashboard 'bind' feature is used internally in 
> AnnotationChart.  It was actually implemented as a Dashboard first, and 
> then wrapped with a chart API.  And we have been thinking about how to do 
> that kind of wrapping more easily using a ChartWrapper.
>
> There are a couple of undocumented options regarding the zoom buttons, if 
> you want to customize them:  
> https://groups.google.com/d/msg/google-visualization-api/pzZoRUn5oLA/RQs6RSeJXr4J
>
> Enjoy.
>
> On Fri, Apr 15, 2016 at 1:20 AM, Shamoun Ilyas  > wrote:
>
>> Also, if you could advise- it is possible to remove the 1h & 1d zoom 
>> buttons from the chart and leave the remaining? Thanks
>>
>> On Friday, 15 April 2016 09:58:07 UTC+5, Shamoun Ilyas wrote:
>>>
>>> Thank you Daniel for you reply. Thanks i will try the volume chart on a 
>>> different vertical axis. Ideally, I was looking for a whole separate chart 
>>> within the AnnotationChart- something like the 'bind' feature you have in 
>>> ChartWrapper. Thanks once again.
>>>
>>> On Friday, 15 April 2016 00:45:00 UTC+5, Daniel LaLiberte wrote:

 The main chart in the AnnotationChart is actually just a ComboChart.  
 You can give it options under a 'chart' option.  You can target a 
 different 
 vertical axis for the volume chart, and arrange that it shows up mostly in 
 the bottom area.  But you can't add a whole separate chart within the 
 AnnotationChart, though that would be a good idea.

 On Thu, Apr 14, 2016 at 3:51 AM, Shamoun Ilyas  
 wrote:

> I am trying to figure out if it is possible to make a stock price 
> (chart type: line) & volume (chart type: column to area)- with the chart 
> range filter at the bottom. Not been able to figure it as yet. Is it even 
> possible? Any help would be appreciated. Thanks.
>
> -- 
> 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/8e1467a3-889b-4f62-aae2-19ea94cc5255%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



 -- 
 Daniel LaLiberte 
 
 dlali...@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-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/8b95ced3-4768-42fb-8af8-1c0ee0e7e2c7%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 

Re: [visualization-api] Annotation Charts

2016-04-15 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Shamoun,

As a matter of fact, the Dashboard 'bind' feature is used internally in
AnnotationChart.  It was actually implemented as a Dashboard first, and
then wrapped with a chart API.  And we have been thinking about how to do
that kind of wrapping more easily using a ChartWrapper.

There are a couple of undocumented options regarding the zoom buttons, if
you want to customize them:
https://groups.google.com/d/msg/google-visualization-api/pzZoRUn5oLA/RQs6RSeJXr4J

Enjoy.

On Fri, Apr 15, 2016 at 1:20 AM, Shamoun Ilyas  wrote:

> Also, if you could advise- it is possible to remove the 1h & 1d zoom
> buttons from the chart and leave the remaining? Thanks
>
> On Friday, 15 April 2016 09:58:07 UTC+5, Shamoun Ilyas wrote:
>>
>> Thank you Daniel for you reply. Thanks i will try the volume chart on a
>> different vertical axis. Ideally, I was looking for a whole separate chart
>> within the AnnotationChart- something like the 'bind' feature you have in
>> ChartWrapper. Thanks once again.
>>
>> On Friday, 15 April 2016 00:45:00 UTC+5, Daniel LaLiberte wrote:
>>>
>>> The main chart in the AnnotationChart is actually just a ComboChart.
>>> You can give it options under a 'chart' option.  You can target a different
>>> vertical axis for the volume chart, and arrange that it shows up mostly in
>>> the bottom area.  But you can't add a whole separate chart within the
>>> AnnotationChart, though that would be a good idea.
>>>
>>> On Thu, Apr 14, 2016 at 3:51 AM, Shamoun Ilyas  wrote:
>>>
 I am trying to figure out if it is possible to make a stock price
 (chart type: line) & volume (chart type: column to area)- with the chart
 range filter at the bottom. Not been able to figure it as yet. Is it even
 possible? Any help would be appreciated. Thanks.

 --
 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/8e1467a3-889b-4f62-aae2-19ea94cc5255%40googlegroups.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>>
>>>
>>>
>>> --
>>> Daniel LaLiberte 
>>> dlali...@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/8b95ced3-4768-42fb-8af8-1c0ee0e7e2c7%40googlegroups.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/CAOtcSJN6JQEBPurLgSVuVh57tN_nUQRsoxFt%2BAjP0XhsZtJB%3Dg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Annotation Charts

2016-04-14 Thread Shamoun Ilyas
Also, if you could advise- it is possible to remove the 1h & 1d zoom 
buttons from the chart and leave the remaining? Thanks

On Friday, 15 April 2016 09:58:07 UTC+5, Shamoun Ilyas wrote:
>
> Thank you Daniel for you reply. Thanks i will try the volume chart on a 
> different vertical axis. Ideally, I was looking for a whole separate chart 
> within the AnnotationChart- something like the 'bind' feature you have in 
> ChartWrapper. Thanks once again.
>
> On Friday, 15 April 2016 00:45:00 UTC+5, Daniel LaLiberte wrote:
>>
>> The main chart in the AnnotationChart is actually just a ComboChart.  You 
>> can give it options under a 'chart' option.  You can target a different 
>> vertical axis for the volume chart, and arrange that it shows up mostly in 
>> the bottom area.  But you can't add a whole separate chart within the 
>> AnnotationChart, though that would be a good idea.
>>
>> On Thu, Apr 14, 2016 at 3:51 AM, Shamoun Ilyas  wrote:
>>
>>> I am trying to figure out if it is possible to make a stock price (chart 
>>> type: line) & volume (chart type: column to area)- with the chart range 
>>> filter at the bottom. Not been able to figure it as yet. Is it even 
>>> possible? Any help would be appreciated. Thanks.
>>>
>>> -- 
>>> 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/8e1467a3-889b-4f62-aae2-19ea94cc5255%40googlegroups.com
>>>  
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> -- 
>> Daniel LaLiberte 
>> dlali...@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/8b95ced3-4768-42fb-8af8-1c0ee0e7e2c7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Annotation Charts

2016-04-14 Thread Shamoun Ilyas
Thank you Daniel for you reply. Thanks i will try the volume chart on a 
different vertical axis. Ideally, I was looking for a whole separate chart 
within the AnnotationChart- something like the 'bind' feature you have in 
ChartWrapper. Thanks once again.

On Friday, 15 April 2016 00:45:00 UTC+5, Daniel LaLiberte wrote:
>
> The main chart in the AnnotationChart is actually just a ComboChart.  You 
> can give it options under a 'chart' option.  You can target a different 
> vertical axis for the volume chart, and arrange that it shows up mostly in 
> the bottom area.  But you can't add a whole separate chart within the 
> AnnotationChart, though that would be a good idea.
>
> On Thu, Apr 14, 2016 at 3:51 AM, Shamoun Ilyas  > wrote:
>
>> I am trying to figure out if it is possible to make a stock price (chart 
>> type: line) & volume (chart type: column to area)- with the chart range 
>> filter at the bottom. Not been able to figure it as yet. Is it even 
>> possible? Any help would be appreciated. Thanks.
>>
>> -- 
>> 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/8e1467a3-889b-4f62-aae2-19ea94cc5255%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/2365bc67-71ea-4622-a484-ad5f8a895d7a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Annotation Charts

2016-04-14 Thread 'Daniel LaLiberte' via Google Visualization API
The main chart in the AnnotationChart is actually just a ComboChart.  You
can give it options under a 'chart' option.  You can target a different
vertical axis for the volume chart, and arrange that it shows up mostly in
the bottom area.  But you can't add a whole separate chart within the
AnnotationChart, though that would be a good idea.

On Thu, Apr 14, 2016 at 3:51 AM, Shamoun Ilyas  wrote:

> I am trying to figure out if it is possible to make a stock price (chart
> type: line) & volume (chart type: column to area)- with the chart range
> filter at the bottom. Not been able to figure it as yet. Is it even
> possible? Any help would be appreciated. Thanks.
>
> --
> 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/8e1467a3-889b-4f62-aae2-19ea94cc5255%40googlegroups.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/CAOtcSJMRs91U0v9PvG3d42Nfqy8PZNZ6T8XqmTysVUq3DMGygA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Annotation Charts - How to display change of value in current display as a percentage?

2015-10-12 Thread 'Daniel LaLiberte' via Google Visualization API
Ray,

We don't have that option in the AnnotationChart yet.  It's a good idea,
and we will probably get around to implementing it next time we are working
that area.

On Mon, Oct 12, 2015 at 10:03 PM, Ray  wrote:

> How can I display the change in value of the selected time range as a
> percentage on the chart, similar to how Google Finance charts display 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 google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> http://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/9cf2ebfa-e1c5-479e-a939-b6775e30a29e%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Daniel LaLiberte   -
978-394-1058
dlalibe...@google.com    5CC, Cambridge MA
daniel.lalibe...@gmail.com  9 Juniper Ridge
Road, Acton 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 http://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJOrahWKAs%2BBPWH_wVeb5yAQjYqkuX7Wb65SG44ZfRP7VQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Annotation Charts - legendPosition

2015-07-09 Thread 'Daniel LaLiberte' via Google Visualization API
Adding legendPosition: 'newRow' seems to work fine for me:
https://jsfiddle.net/dlaliberte/ovb2g06d/

On Thu, Jul 9, 2015 at 2:52 PM, Kye Miranda kyem1...@gmail.com wrote:

 I am trying to fit this type of chart
 https://google-developers.appspot.com/chart/interactive/docs/gallery/annotationchart
 into a div using html. However in this div, the charts legend is cutoff. I
 noticed in the documentation that there is a legendPosition option which
 has the capability to move to the legend to the next row, but I am having
 trouble getting it to work.

 If someone could take a look at this option and help me out that would be
 awesome.

 --
 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
 http://groups.google.com/group/google-visualization-api.
 For more options, visit https://groups.google.com/d/optout.




-- 
Daniel LaLiberte https://plus.google.com/100631381223468223275?prsrc=2  -
978-394-1058
dlalibe...@google.com dlalibe...@google.com   5CC, Cambridge MA
daniel.lalibe...@gmail.com daniel.lalibe...@gmail.com 9 Juniper Ridge
Road, Acton 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 http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Annotation Charts - legendPosition

2015-07-09 Thread 'Daniel LaLiberte' via Google Visualization API
Sorry, no.  The current features are mostly for backward compatibility with
the old annotatedTimeLine chart.  We plan to do more in the future to allow
the layout to be configured, but there is nothing else now.

On Thu, Jul 9, 2015 at 4:23 PM, Kye Miranda kyem1...@gmail.com wrote:

 Ok, I guess the result was too subtle for me to notice in the format that
 its being used. Is there anyway to re-position the legend completely? E.g.
 move it underneath the legend?

 On Thursday, July 9, 2015 at 12:14:18 PM UTC-7, Daniel LaLiberte wrote:

 Adding legendPosition: 'newRow' seems to work fine for me:
 https://jsfiddle.net/dlaliberte/ovb2g06d/

 On Thu, Jul 9, 2015 at 2:52 PM, Kye Miranda kyem...@gmail.com wrote:

 I am trying to fit this type of chart
 https://google-developers.appspot.com/chart/interactive/docs/gallery/annotationchart
 into a div using html. However in this div, the charts legend is cutoff. I
 noticed in the documentation that there is a legendPosition option which
 has the capability to move to the legend to the next row, but I am having
 trouble getting it to work.

 If someone could take a look at this option and help me out that would
 be awesome.

 --
 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
 http://groups.google.com/group/google-visualization-api.
 For more options, visit https://groups.google.com/d/optout.




 --
 Daniel LaLiberte https://plus.google.com/100631381223468223275?prsrc=2
  - 978-394-1058
 dlali...@google.com   5CC, Cambridge MA
 daniel.l...@gmail.com 9 Juniper Ridge Road, Acton 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
 http://groups.google.com/group/google-visualization-api.
 For more options, visit https://groups.google.com/d/optout.




-- 
Daniel LaLiberte https://plus.google.com/100631381223468223275?prsrc=2  -
978-394-1058
dlalibe...@google.com dlalibe...@google.com   5CC, Cambridge MA
daniel.lalibe...@gmail.com daniel.lalibe...@gmail.com 9 Juniper Ridge
Road, Acton 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 http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Annotation Charts - legendPosition

2015-07-09 Thread Kye Miranda
Ok, I guess the result was too subtle for me to notice in the format that 
its being used. Is there anyway to re-position the legend completely? E.g. 
move it underneath the legend?

On Thursday, July 9, 2015 at 12:14:18 PM UTC-7, Daniel LaLiberte wrote:

 Adding legendPosition: 'newRow' seems to work fine for me: 
 https://jsfiddle.net/dlaliberte/ovb2g06d/

 On Thu, Jul 9, 2015 at 2:52 PM, Kye Miranda kyem...@gmail.com 
 javascript: wrote:

 I am trying to fit this type of chart 
 https://google-developers.appspot.com/chart/interactive/docs/gallery/annotationchart
  
 into a div using html. However in this div, the charts legend is cutoff. I 
 noticed in the documentation that there is a legendPosition option which 
 has the capability to move to the legend to the next row, but I am having 
 trouble getting it to work. 

 If someone could take a look at this option and help me out that would be 
 awesome.

 -- 
 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 
 javascript:.
 To post to this group, send email to google-visua...@googlegroups.com 
 javascript:.
 Visit this group at 
 http://groups.google.com/group/google-visualization-api.
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Daniel LaLiberte https://plus.google.com/100631381223468223275?prsrc=2 
  - 978-394-1058
 dlali...@google.com javascript:   5CC, Cambridge MA
 daniel.l...@gmail.com javascript: 9 Juniper Ridge Road, Acton 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 http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Annotation charts tooltip

2014-03-13 Thread Lore927
Does this also mean that currently it is not possible to combine 
AnnotationChart with Dashboard? or bind AnnotationChart with, say a 
Categoryfilter?

thanks

On Sunday, March 2, 2014 5:21:45 AM UTC+1, Daniel LaLiberte wrote:

 We have not yet exposed more capability in the AnnotationChart, such as 
 tooltips and alternative chart types.  We have no specific plans at this 
 time, but such features will be coming soon, since they will be relatively 
 simple to implement.


 On Sat, Mar 1, 2014 at 11:07 AM, Queryby hanu que...@gmail.comjavascript:
  wrote:

 I am using Annotation Chart  it works very fine but i want to add a 
 tooltip in into the annotaion chat. Please anybody resolve my problem.

 -- 
 You received this message because you are subscribed to the Google Groups 
 Google Visualization API group.
   unsubscribe from this group and stop receiving emails from it, send an 
 email to google-visualization-api+unsubscr...@googlegroups.comjavascript:
 .
 To post to this group, send email to 
 google-visua...@googlegroups.comjavascript:
 .
 Visit this group at 
 http://groups.google.com/group/google-visualization-api.
 For more options, visit https://groups.google.com/groups/opt_out.




 -- 
 Daniel LaLiberte https://plus.google.com/100631381223468223275?prsrc=2 
  - 978-394-1058
 dlali...@google.com javascript:   5CC, Cambridge MA
 daniel.l...@gmail.com javascript: 9 Juniper Ridge Road, Acton 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 http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Annotation charts tooltip

2014-03-13 Thread Daniel LaLiberte
The AnnotationChart ought to have worked with Dashboards, but there were a
couple bugs concerned with using AnnotationChart with DataViews and
ChartWrappers that also prevent it from working in a Dashboard.  The fixes
for those bugs should be released in about 1 month, along with the next
major release.


On Thu, Mar 13, 2014 at 7:05 AM, Lore927 lorenzo.habic...@gmail.com wrote:

 Does this also mean that currently it is not possible to combine
 AnnotationChart with Dashboard? or bind AnnotationChart with, say a
 Categoryfilter?

 thanks


 On Sunday, March 2, 2014 5:21:45 AM UTC+1, Daniel LaLiberte wrote:

 We have not yet exposed more capability in the AnnotationChart, such as
 tooltips and alternative chart types.  We have no specific plans at this
 time, but such features will be coming soon, since they will be relatively
 simple to implement.


 On Sat, Mar 1, 2014 at 11:07 AM, Queryby hanu que...@gmail.com wrote:

 I am using Annotation Chart  it works very fine but i want to add a
 tooltip in into the annotaion chat. Please anybody resolve my problem.

 --
 You received this message because you are subscribed to the Google
 Groups Google Visualization API group.
   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 http://groups.google.com/
 group/google-visualization-api.
 For more options, visit https://groups.google.com/groups/opt_out.




 --
 Daniel LaLiberte https://plus.google.com/100631381223468223275?prsrc=2
  - 978-394-1058
 dlali...@google.com   5CC, Cambridge MA
 daniel.l...@gmail.com 9 Juniper Ridge Road, Acton 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
 http://groups.google.com/group/google-visualization-api.
 For more options, visit https://groups.google.com/d/optout.




-- 
Daniel LaLiberte https://plus.google.com/100631381223468223275?prsrc=2  -
978-394-1058
dlalibe...@google.com dlalibe...@google.com   5CC, Cambridge MA
daniel.lalibe...@gmail.com daniel.lalibe...@gmail.com 9 Juniper Ridge
Road, Acton 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 http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Annotation charts tooltip

2014-03-13 Thread Lore927
thank you

On Thursday, March 13, 2014 1:19:21 PM UTC+1, Daniel LaLiberte wrote:

 The AnnotationChart ought to have worked with Dashboards, but there were a 
 couple bugs concerned with using AnnotationChart with DataViews and 
 ChartWrappers that also prevent it from working in a Dashboard.  The fixes 
 for those bugs should be released in about 1 month, along with the next 
 major release.


 On Thu, Mar 13, 2014 at 7:05 AM, Lore927 lorenzo@gmail.comjavascript:
  wrote:

 Does this also mean that currently it is not possible to combine 
 AnnotationChart with Dashboard? or bind AnnotationChart with, say a 
 Categoryfilter?

 thanks


 On Sunday, March 2, 2014 5:21:45 AM UTC+1, Daniel LaLiberte wrote:

 We have not yet exposed more capability in the AnnotationChart, such as 
 tooltips and alternative chart types.  We have no specific plans at this 
 time, but such features will be coming soon, since they will be relatively 
 simple to implement.


 On Sat, Mar 1, 2014 at 11:07 AM, Queryby hanu que...@gmail.com wrote:

  I am using Annotation Chart  it works very fine but i want to add a 
 tooltip in into the annotaion chat. Please anybody resolve my problem.

 -- 
 You received this message because you are subscribed to the Google 
 Groups Google Visualization API group.
   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 http://groups.google.com/
 group/google-visualization-api.
 For more options, visit https://groups.google.com/groups/opt_out.




 -- 
 Daniel LaLiberte https://plus.google.com/100631381223468223275?prsrc=2
   - 978-394-1058
 dlali...@google.com   5CC, Cambridge MA
 daniel.l...@gmail.com 9 Juniper Ridge Road, Acton 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.comjavascript:
 .
 To post to this group, send email to 
 google-visua...@googlegroups.comjavascript:
 .
 Visit this group at 
 http://groups.google.com/group/google-visualization-api.
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Daniel LaLiberte https://plus.google.com/100631381223468223275?prsrc=2 
  - 978-394-1058
 dlali...@google.com javascript:   5CC, Cambridge MA
 daniel.l...@gmail.com javascript: 9 Juniper Ridge Road, Acton 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 http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Annotation charts tooltip

2014-03-01 Thread Daniel LaLiberte
We have not yet exposed more capability in the AnnotationChart, such as
tooltips and alternative chart types.  We have no specific plans at this
time, but such features will be coming soon, since they will be relatively
simple to implement.


On Sat, Mar 1, 2014 at 11:07 AM, Queryby hanu quer...@gmail.com wrote:

 I am using Annotation Chart  it works very fine but i want to add a
 tooltip in into the annotaion chat. Please anybody resolve my problem.

 --
 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
 http://groups.google.com/group/google-visualization-api.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
Daniel LaLiberte https://plus.google.com/100631381223468223275?prsrc=2  -
978-394-1058
dlalibe...@google.com dlalibe...@google.com   5CC, Cambridge MA
daniel.lalibe...@gmail.com daniel.lalibe...@gmail.com 9 Juniper Ridge
Road, Acton 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 http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.