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
Post a Comment