linechart - Google chart line chart - turn off tooltip for a single column -


i know question asked before using google visualization api, how turn off tooltips single column?, didn't familiar answer.please can tell me how turn off tooltip single column?.i tried this

chart.draw(data, {trigger:'none'}); 

but turns off tooltip columns.i want 1 column tooltip disabled , other columns should have enabled tooltip.

the option enableinteractivity: false blocked alse series select option , etc.

you can better way:

option = {   series : {                 0: { tooltip : false}, // disable tooltip           1: { tooltip : true}, // enable tooltip           2: { tooltip : false},           3: { tooltip : true},           4: { tooltip : true},       } } 

it works me perfectly.


Comments

Popular posts from this blog

user interface - How to replace the Python logo in a Tkinter-based Python GUI app? -

objective c - Greedy NSProgressIndicator Allocation -

how to set an OCR language in Google Drive -