ECharts 中有两种方式的地图区域处理:
events.geoselectchanged | Event
ACTION: geoToggleSelect
geo 中地图区域切换选中状态的事件。
用户点击选中会触发该事件。
{
type: 'geoselectchanged',
// 系列 ID,可以在 option 中传入
seriesId: string
// 数据名称
name: name,
// 所有数据的选中状态表。
selected: Object
}
events.geoselected | Event
ACTION: geoSelect
geo 中地图区域选中后的事件。
使用dispatchAction可触发此事件,用户点击不会触发此事件(用户点击事件请使用 geoselectchanged)。
{
type: 'geoselected',
// 系列 ID,可以在 option 中传入
seriesId: string
// 数据名称
name: name,
// 所有数据的选中状态表。
selected: Object
}
events.
geounselected| Event
ACTION: geoUnSelect
geo 中地图区域取消选中后的事件。
使用dispatchAction可触发此事件,用户点击不会触发此事件(用户点击事件请使用 geoselectchanged)。
{
type: 'geounselected',
// 系列 ID,可以在 option 中传入
seriesId: string
// 数据名称
name: name,
// 所有数据的选中状态表。
selected: Object
}
events.mapselectchanged | Event
ACTION: mapToggleSelect
series-map 中地图区域切换选中状态的事件。
用户点击选中会触发该事件。
{
type: 'mapselectchanged',
// 系列 ID,可以在 option 中传入
seriesId: string
// 数据名称
name: name,
// 所有数据的选中状态表。
selected: Object
}
注: 该事件同 ECharts 2 中的 mapSelected 事件相同。
events.mapselected | Event
ACTION: mapSelect
series-map 中地图区域选中后的事件。
使用dispatchAction可触发此事件,用户点击不会触发此事件(用户点击事件请使用 mapselectchanged)。
{
type: 'mapselected',
// 系列 ID,可以在 option 中传入
seriesId: string
// 数据名称
name: name,
// 所有数据的选中状态表。
selected: Object}
注: ECharts 2.x 中用户开关图例对应的事件从 mapselected 改为 mapselectchanged。
events.mapunselected | Event
ACTION: mapUnSelect
series-map 中地图区域取消选中后的事件。
使用dispatchAction可触发此事件,用户点击不会触发此事件(用户点击事件请使用 mapselectchanged)。
{
type: 'mapunselected',
// 系列 ID,可以在 option 中传入
seriesId: string
// 数据名称
name: name,
// 所有数据的选中状态表。
selected: Object
}
action.map | *地图图表相关的行为,必须引入地图图表后才能使用。action.map.mapSelect | Action选中指定的地图区域。dispatchA...
brush.toolbox |Array[ default: ['rect', 'polygon', 'keep', 'clear'] ]使用在 toolbox 中的...
parallel.parallelAxisDefault.axisTick.show |boolean[ default: true ]显示 ECharts parallel 坐标轴的宽度。该属性的取值为布...
这一章介绍了 ECharts singleAxis 组件的使用以及它的一些基本属性。singleAxissingleAxis 是 ECharts 中的单轴。它可以被应用到...
singleAxis.axisPointer.label |ObjectECharts 单轴指示器文本标签设置。singleAxis.axisPointer.label.show |boolean[ default:...
ECharts 中时间轴组件包含了可以在多个 EChartsoption间进行切换、播放等操作的功能。ECharts 时间轴组件适用的范围是:非动态数...
timeline.controlStyle |Object设置 ECharts 时间轴组件中控制按钮的样式。控制按钮包括:播放按钮、前进按钮、后退按钮。timeli...
graphic.elements[i]-sector用于设置 ECharts 中的扇形元素。graphic.elements[i]-sector.type|string[ default: sector ]使用 s...
calendar.monthLabel |Object设置 ECharts 日历坐标中月份轴的样式calendar.monthLabel.show |boolean[ default: true ]是否在普...
calendar.dayLabel| Object设置 ECharts 日历坐标系中星期标签的样式。calendar.dayLabel.show|boolean[ default: true ]是否在...