Show Multiple Tooltips In Google Charts
I'm using the combo chart from Google Charts (https://google-developers.appspot.com/chart/interactive/docs/gallery/combochart) in my web application. I have set the tooltips to sho
Solution 1:
You need to add Configuration options focusTarget: 'category'
Solution 2:
You can use options (at least for line chart)
selectionMode: 'multiple',
tooltip: { trigger: 'selection' },
aggregationTarget: 'series',
so user can select multiple data points. But as I can see only one tooltip is opened with collected data.
Using
selectionMode: 'multiple',
tooltip: { trigger: 'selection' },
aggregationTarget: 'none',
you get multiple tooltips opened.
Post a Comment for "Show Multiple Tooltips In Google Charts"