阅读(2257)
赞(25)
ECharts地图图表应用
2017-08-28 18:19:22 更新
action.map | *
地图图表相关的行为,必须引入地图图表后才能使用。
action.map.mapSelect | Action
选中指定的地图区域。
dispatchAction({
type: 'mapSelect',
// 可选,系列 index,可以是一个数组指定多个系列
seriesIndex?: number|Array,
// 可选,系列名称,可以是一个数组指定多个系列
seriesName?: string|Array,
// 数据的 index,如果不指定也可以通过 name 属性根据名称指定数据
dataIndex?: number,
// 可选,数据名称,在有 dataIndex 的时候忽略
name?: string
})
EVENT: mapselected
action.map.mapUnSelect | Action
取消选中指定的地图区域。
dispatchAction({
type: 'mapUnSelect',
// 可选,系列 index,可以是一个数组指定多个系列
seriesIndex?: number|Array,
// 可选,系列名称,可以是一个数组指定多个系列
seriesName?: string|Array,
// 数据的 index,如果不指定也可以通过 name 属性根据名称指定数据
dataIndex?: number,
// 可选,数据名称,在有 dataIndex 的时候忽略
name?: string
})
EVENT: mapunselected
action.map.mapToggleSelect | Action
切换指定的地图区域选中状态。
dispatchAction({
type: 'mapToggleSelect',
// 可选,系列 index,可以是一个数组指定多个系列
seriesIndex?: number|Array,
// 可选,系列名称,可以是一个数组指定多个系列
seriesName?: string|Array,
// 数据的 index,如果不指定也可以通过 name 属性根据名称指定数据
dataIndex?: number,
// 可选,数据名称,在有 dataIndex 的时候忽略
name?: string
})
EVENT: mapselectchanged