line/bar 鼠标浮动上去提示的设置
2019-12-10 本文已影响0人
兰夏天
属性 tooltip
如图


setOption({
tooltip: {
trigger: 'axis',
axisPointer: {
animation: false
},
formatter: function (params) {
// console.log(params, 3333333333333)
var tar
tar = params[0]
return tar.name + '<br/>' + '值' + ' : ' + tar.value + that.spobj.unit
// return tar.name + '<br/>' + tar.seriesName + ' : ' + tar.value + that.spobj.unit
}
},
grid: {
top: '4%',
left: '3%',
right: '5%',
containLabel: true
},
//其与代码省略。。。。。。。。。。。。
})