我有这样的图表结构: -
data: {
cols: [
{
id: 'Type',
type: 'string'
},
{
id: 'percentage',
type: 'number'
},
{
id: 'tooltip',
role: 'tooltip',
type: 'string',
p: { html: true }
}
],
rows: [
{
c: [
{
v: typeA
},
{
v: 20
},
{
v: 'my Tooltip content'
}
]
},
{
c: [
{
v: 'typeB'
},
{
v: 80
}
]
}
]
},
我只想为 typeB 禁用 tooptip,但应该与 typeA 一起使用。这在谷歌图表中可能吗?(tooptip 触发器:无选项为整个图表禁用它)