简体   繁体   中英

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 show on select by specifying the option

tooltip: { trigger: 'selection' }

when initializing the chart. However, I can't find any way to allow the user to select two points at once. Once the user selects a second point, the tooltip on the previous point closes.

Does anyone know how to enable multi-select for the tooltips?

Thanks,

Paul

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.

您需要添加配置选项focusTarget: 'category'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM