@dmcisgood It seems you are not using English, I've helped translate the content automatically. To make your issue understood by more people and get helped, we'd like to suggest using English next time. 🤗 TRANSLATED
TITLE
[Feature] updateAxisPointer event did not find the corresponding api
BODY
What problem does this feature solve?
I saw an updateAxisPointer event in the case, but no information was found in the API documentation
2条答案
按热度按时间nkhmeac61#
@dmcisgood It seems you are not using English, I've helped translate the content automatically. To make your issue understood by more people and get helped, we'd like to suggest using English next time. 🤗
TRANSLATED
TITLE
[Feature] updateAxisPointer event did not find the corresponding api
BODY
What problem does this feature solve?
I saw an updateAxisPointer event in the case, but no information was found in the API documentation
What does the proposed API look like?
Wondering where this information is
ryevplcw2#
Yes, API docs do not mention updateAxisPointer, but a repo search will find calls like:
echarts/src/component/tooltip/TooltipView.ts
Line 436 in 586ca04
| | api.dispatchAction({ |
This action format works:
chart.dispatchAction({ type: 'updateAxisPointer', seriesIndex: 0, dataIndex: 44 });
For the event see:
echarts/test/dataset-layout.html
Line 207 in 586ca04
| | chart&&chart.on('updateAxisPointer',function(event){ |