Sub-skill of echarts: Event Handling.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill event-handling --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Event Handling?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-event-handling-workspace-hub)More formats (shields.io, HTML) on the badges page.
---
name: echarts-event-handling
description: 'Sub-skill of echarts: Event Handling.'
version: 1.0.0
category: data-visualization
type: reference
scripts_exempt: true
---
# Event Handling
## Event Handling
```javascript
// Click event
myChart.on('click', function (params) {
console.log('Clicked:', params);
alert('You clicked on ' + params.name);
});
// Hover event
myChart.on('mouseover', function (params) {
console.log('Hovered:', params);
});
// Custom events
myChart.dispatchAction({
type: 'highlight',
seriesIndex: 0,
dataIndex: 1
});
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!