dispatchAction({
type: 'showTip',
// 用 index 或 id 或 name 来指定系列。
// 可以使用数组指定多个系列。
seriesIndex?: number | number[],
seriesId?: string | string[],
seriesName?: string | string[],
文档写的是 seriesIndex 是用来指定系列(series),我自己的程序中有个两个系列,所以我指定
seriesIndex:0,选中第一个系列来显示,但是自动轮播出来的是会有两个浮动框出现。
类似这种,显示第一个浮动框后,后面又有一浮动框,但是我只想要一个浮动框轮播。如果按照文档说的,我设置seriesIndex: 0; 那应该就只会轮播一个。