Update: the ability to turn off timeline tooltips will be in the next release of Google Charts, which should be in March.
Jon On Wed, Feb 19, 2014 at 9:03 AM, Jon Orwant <[email protected]> wrote: > tooltip: { trigger: 'none' } will work in the future, but not yet. The > timeline is still new and we haven't added most of of the regular Google > Charts features to it yet. > > Jon > > > On Tue, Feb 18, 2014 at 6:06 PM, Evgueni Gordienko <[email protected] > > wrote: > >> Any way to disable tooltips in timeline chart now? >> >> Thanks, >> Eugene >> >> >> On Tue, Feb 18, 2014 at 2:35 PM, Jon Orwant <[email protected]> wrote: >> >>> Elaborating on what Sergey said, we expect to have custom tooltips for >>> Timelines in a future Charts release, but aren't sure which yet. >>> >>> Jon >>> >>> >>> On Tue, Feb 18, 2014 at 5:31 PM, Sergey Grabkovsky <[email protected]>wrote: >>> >>>> No, custom tooltips are currently not supported in the Timeline >>>> visualization. >>>> >>>> - Sergey >>>> >>>> >>>> On Tue, Feb 18, 2014 at 5:01 PM, Evgueni Gordienko < >>>> [email protected]> wrote: >>>> >>>>> Thanks a lot - it works with corechart: >>>>> >>>>> >>>>> <html> >>>>> <head> >>>>> <script type="text/javascript" src="https://www.google.com/jsapi >>>>> "></script> >>>>> <script type="text/javascript"> >>>>> google.load('visualization', '1', {'packages' : ['corechart']}); >>>>> >>>>> >>>>> google.setOnLoadCallback(drawChart); >>>>> >>>>> function drawChart() { >>>>> var dataTable = new google.visualization.DataTable(); >>>>> dataTable.addColumn('string', 'Year'); >>>>> dataTable.addColumn('number', 'Sales'); >>>>> // A column for custom tooltip content >>>>> dataTable.addColumn({type: 'string', role: 'tooltip'}); >>>>> dataTable.addRows([ >>>>> ['2010', 600, '$600K in our first year!'], >>>>> ['2011', 1500, 'Sunspot activity made this our best year >>>>> ever!'], >>>>> ['2012', 800, '$800K in 2012.'], >>>>> ['2013', 1000, '$1M in sales last year.'] >>>>> ]); >>>>> >>>>> var options = { legend: 'none', >>>>> tooltip: {isHtml: true}, >>>>> >>>>> }; >>>>> var chart = new >>>>> google.visualization.ColumnChart(document.getElementById('traceChart')); >>>>> chart.draw(dataTable, options); >>>>> } >>>>> </script> >>>>> </head> >>>>> <body style="font-family: Arial;border: 0 none;"> >>>>> <div id="traceChart" style="width: 1200px; height: 800px;"></div> >>>>> </body> >>>>> </html> >>>>> >>>>> -- >>>>> 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 [email protected]. >>>>> To post to this group, send email to >>>>> [email protected]. >>>>> Visit this group at >>>>> http://groups.google.com/group/google-visualization-api. >>>>> For more options, visit https://groups.google.com/groups/opt_out. >>>>> >>>> >>>> -- >>>> 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 [email protected]. >>>> To post to this group, send email to >>>> [email protected]. >>>> Visit this group at >>>> http://groups.google.com/group/google-visualization-api. >>>> For more options, visit https://groups.google.com/groups/opt_out. >>>> >>> >>> -- >>> You received this message because you are subscribed to a topic in the >>> Google Groups "Google Visualization API" group. >>> To unsubscribe from this topic, visit >>> https://groups.google.com/d/topic/google-visualization-api/FdeRaMUDfmQ/unsubscribe >>> . >>> To unsubscribe from this group and all its topics, send an email to >>> [email protected]. >>> >>> To post to this group, send email to >>> [email protected]. >>> Visit this group at >>> http://groups.google.com/group/google-visualization-api. >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >> >> -- >> 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 [email protected]. >> To post to this group, send email to >> [email protected]. >> Visit this group at >> http://groups.google.com/group/google-visualization-api. >> For more options, visit https://groups.google.com/groups/opt_out. >> > > -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-visualization-api. For more options, visit https://groups.google.com/groups/opt_out.
