helgasoft commented on issue #19299:
URL: https://github.com/apache/echarts/issues/19299#issuecomment-1813320015
something to experiment with
```
myChart.on('click', 'series', function (p) {
if (p.selfType=='breadcrumb') {
// get the dataIndex of clicked node
console.log(p.nodeData.name+' '+p.nodeData.dataIndex)
myChart.dispatchAction({
type: 'select',
dataIndex: p.nodeData.dataIndex
});
}
})
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]