Echarts tooltip文字没有左对齐
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Echarts tooltip文字没有左对齐相关的知识,希望对你有一定的参考价值。
tooltip : {
trigger: ‘axis‘,
axisPointer : { // 坐标轴指示器,坐标轴触发有效
type : ‘shadow‘ // 默认为直线,可选为:‘line‘ | ‘shadow‘
},
textStyle:{
align:‘left‘
}
}
解决办法:tooltip加入如下代码。
textStyle:{
align:‘left‘
}
以上是关于Echarts tooltip文字没有左对齐的主要内容,如果未能解决你的问题,请参考以下文章
echarts的 tooltip formatter参数怎么回调吗