2021SC@SDUSC
dispatchAction
我们在使用echarts的过程中,经常会需要使用echarts对外提供的一些api,如:
echartsInstance.dispatchAction({
type: 'updateAxisPointer',
x: 20,
y: 30
});
那么echarts是怎么对这些api进行处理的呢?
能够通过dispatchAction使用的api,首先必须通过registerAction注册api,举updateAxisPointer的