tooltip
提示框组件。
- tooltip.show: 是否显示提示框组件,包括提示框浮层和 axisPointer。
- tooltip.showContent: 是否显示提示框浮层,默认显示。只需tooltip触发事件或显示axisPointer而不需要显示内容时可配置该项为false。
- tooltip.trigger: 触发类型
可选: 'item' 数据项图形触发,主要在散点图,饼图等无类目轴的图表中使用。 'axis' 坐标轴触发,主要在柱状图,折线图等会使用类目轴的图表中使用。 在 ECharts 2.x 中只支持类目轴上使用 axis trigger,在 ECharts 3 中支持在直角坐标系和极坐标系上的所有类型的轴。并且可以通过 axisPointer.axis 指定坐标轴。
- tooltip.triggerOn: 提示框触发的条件
'mousemove' 鼠标移动时触发。 'click' 鼠标点击时触发。
- tooltip.alwaysShowContent: 是否永远显示提示框内容,默认情况下在移出可触发提示框区域后 一定时间 后隐藏,设置为 true 可以保证一直显示提示框内容。
- tooltip.hideDelay: 浮层隐藏的延迟,单位为 ms,在 alwaysShowContent 为 true 的时候无效。
- tooltip.enterable: 鼠标是否可进入提示框浮层中,默认为false,如需详情内交互,如添加链接,按钮,可设置为 true。
- tooltip.position: 提示框浮层的位置,默认不设置时位置会跟随鼠标的位置。
Array 通过数组表示提示框浮层的位置,支持数字设置绝对位置,百分比设置相对位置。 示例: // 绝对位置,相对于容器左侧 10px, 上侧 10 px position: [10, 10] // 相对位置,放置在容器正中间 position: ['50%', '50%'] 'inside' 鼠标所在图形的内部中心位置,只在 trigger 为'item'的时候有效。 'top' 鼠标所在图形上侧,只在 trigger 为'item'的时候有效。 'left' 鼠标所在图形左侧,只在 trigger 为'item'的时候有效。 'right' 鼠标所在图形右侧,只在 trigger 为'item'的时候有效。 'bottom' 鼠标所在图形底侧,只在 trigger 为'item'的时候有效。
- tooltip.transitionDuration: 提示框浮层的移动动画过渡时间,单位是 s,设置为 0 的时候会紧跟着鼠标移动。
tooltip.formatter: 提示框浮层内容格式器,支持字符串模板和回调函数两种形式。
1.字符串模板。 模板变量有 {a}, {b},{c},{d},{e},分别表示系列名,数据名,数据值等。 在 trigger 为 'axis' 的时候,会有多个系列的数据,此时可以通过 {a0}, {a1}, {a2} 这种后面加索引的方式表示系列的索引。 不同图表类型下的 {a},{b},{c},{d} 含义不一样。 其中变量{a}, {b}, {c}, {d}在不同图表类型下代表数据含义为: 折线(区域)图、柱状(条形)图、K线图 : {a}(系列名称),{b}(类目值),{c}(数值), {d}(无) 散点图(气泡)图 : {a}(系列名称),{b}(数据名称),{c}(数值数组), {d}(无) 地图 : {a}(系列名称),{b}(区域名称),{c}(合并数值), {d}(无) 饼图、仪表盘、漏斗图: {a}(系列名称),{b}(数据项名称),{c}(数值), {d}(百分比) 更多其它图表模板变量的含义可以见相应的图表的 label.normal.formatter 配置项。 示例: formatter: '{b0}: {c0}<br />{b1}: {c1}' 2.回调函数。 回调函数格式: (params: Object|Array, ticket: string, callback: (ticket: string, html: string)) => string 第一个参数 params 是 formatter 需要的数据集。格式如下: { // 系列在传入的 option.series 中的 index seriesIndex: number, // 系列名称 seriesName: string, // 数据名,类目名 name: string, // 数据在传入的 data 数组中的 index dataIndex: number, // 传入的原始数据项 data: Object, // 传入的数据值 value: number|Array, // 饼图的百分比 percent: number, } 在 trigger 为 'axis' 的时候 params 是多个系列的数据数组。 注: ECharts 2.x 使用数组表示各参数的方式不再支持。 第二个参数 ticket 是异步回调标识,配合第三个参数 callback 使用。 第三个参数 callback 是异步回调,在提示框浮层内容是异步获取的时候,可以通过 callback 传入上述的 ticket 和 html 更新提示框浮层内容。 示例: formatter: function (params, ticket, callback) { $.get('detail?name=' + params.name, function (content) { callback(ticket, toHTML(content)); }); return 'Loading';
}
- tooltip.backgroundColor: 提示框浮层的背景颜色。
- tooltip.borderColor: 提示框浮层的边框颜色。
- tooltip.borderWidth: 提示框浮层的边框宽。
- tooltip.padding: 提示框浮层内边距,单位px,默认各方向内边距为5,接受数组分别设定上右下左边距。
// 设置内边距为 5 padding: 5 // 设置上下的内边距为 5,左右的内边距为 10 padding: [5, 10] // 分别设置四个方向的内边距 padding: [ 5, // 上 10, // 右 5, // 下 10, // 左 ]
- tooltip.textStyle: ...
- tooltip.axisPointer: 坐标轴指示器配置项,在 trigger 为 'axis' 时有效。
- tooltip.axisPointer.type: 指示器类型。
'line' 直线指示器 'cross' 十字准星指示器 'shadow' 阴影指示器
- tooltip.axisPointer.axis: 指示器的坐标轴。可以是 'x', 'y', 'radius', 'angle'。默认取类目轴或者时间轴。
- tooltip.axisPointer.animation: 是否开启动画,默认开启。
- tooltip.axisPointer.animationDuration: 初始动画的时长。
- tooltip.axisPointer.animationEasing: 初始动画的缓动效果。
- tooltip.tooltip.axisPointer.animationEasingUpdate: 数据更新动画的缓动效果。
- tooltip.axisPointer.lineStyle: axisPointer.type 为 'line' 时有效。。。
- tooltip.axisPointer.crossStyle: axisPointer.type 为 'cross' 时有效。。。
- tooltip.axisPointer.shadowStyle: axisPointer.type 为 'shadow' 时有效。。。
- tooltip.axisPointer.type: 指示器类型。