提示框组件相关的行为,必须引入提示框组件后才能使用。
显示提示框。
有下面两种使用方式。
1 指定在相对容器的位置处显示提示框,如果指定的位置无法显示则无效。
dispatchAction({
type: 'showTip',
// 屏幕上的 x 坐标
x: number,
// 屏幕上的 y 坐标
y: number,
// 本次显示 tooltip 的位置。只在本次 action 中生效。
// 缺省则使用 option 中定义的 tooltip 位置。
position: Array.<number>|string|Function
})
2 指定数据图形,根据 tooltip 的配置项显示提示框。
dispatchAction({
type: 'showTip',
// 系列的 index,在 tooltip 的 trigger 为 axis 的时候可选。
seriesIndex?: number,
// 数据的 index,如果不指定也可以通过 name 属性根据名称指定数据
dataIndex?: number,
// 可选,数据名称,在有 dataIndex 的时候忽略
name?: string,
// 本次显示 tooltip 的位置。只在本次 action 中生效。
// 缺省则使用 option 中定义的 tooltip 位置。
position: Array.<number>|string|Function,
})
参数position同tooltip.position相同。
隐藏提示框。
dispatchAction({
type: 'hideTip'
})
axisPointer这是坐标轴指示器(axisPointer)在 ECharts 的全局公用设置。坐标轴指示器的作用是指示坐标轴当前刻度的,它被广泛...
toolbox.feature.brush |Object选框组件的控制按钮。也可以不在这里指定,而是在brush.toolbox中指定。toolbox.feature.brush.ty...
JavaScript slice() 方法 JavaScript Array 对象实例在数组中读取元素:var fruits = ["Banana", "Orange", "Lemon", "Apple", "...
JavaScript getUTCMilliseconds() 方法 JavaScript Date 对象实例根据世界时 (UTC) 返回时间的毫秒(0~999):var d = new Date();v...
JavaScript LOG10E 属性 JavaScript Math 对象实例返回以 10 为底的 e 的对数:Math.LOG10E;输出结果:0.4342944819032518定义和用...