🍓 作者主页:💖仙女不下凡💖
🍓 前言介绍:以下👇内容是我个人对于该技术的总结,如有不足与错误敬请指正!
🍓 欢迎点赞👍 收藏? 留言📝 相关账号会持续发布关于文章Echart的相关文章欢迎持续关注!
- axisPointer:坐标轴指示器配置项
- label:坐标轴指示器的文本标签
- lineStyle:
axisPointer.type 为line 时有效 - shadowStyle:
axisPointer.type 为shadow 时有效 - crossStyle:
axisPointer.type 为cross 时有效。 - textStyle:提示框浮层的文本样式
其中也会含有很多属性,具体使用请参考一下内容
tooltip: {
show: true,
trigger: 'item',
axisPointer: {
type: 'line',
axis: 'auto',
snap: true,
z: 0,
label: {
show: false,
precision: 'auto',
formatter: {},
margin: 3,
color: '#fff', /颜色,文章链接如下 Echart图表之颜色color配置项大全/
fontStyle: '',
fontWeight: '',
fontFamily: '',
fontSize: 12,
lineHeigh: 20,
width: 20,
height: 100,
textBorderColor: '',
textBorderWidth: ,
textBorderType: 'solid',
textBorderDashOffset: 0,
textShadowColor: 'transparent',
textShadowBlur: 0,
textShadowOffsetX: 0,
textShadowOffsetY: 0,
overflow: 'none',
ellipsis: '',
padding: 0,
backgroundColor: 'auto',
borderColor: '',
borderWidth: 0,
shadowBlur: 3,
shadowColor: #aaa,
shadowOffsetX: 0,
shadowOffsetY: 0
},
lineStyle: {
color: #555, /颜色,文章链接如下 Echart图表之颜色color配置项大全/
width: 1,
type: solid,
dashOffset: 0,
cap: 'butt',
join: 'bevel',
miterLimit: 10,
shadowBlur: 10,
shadowColor: '',
shadowOffsetX: 0,
shadowOffsetY: 0,
opacity: 1
},
shadowStyle: {
color: '#fff', /颜色,文章链接如下 Echart图表之颜色color配置项大全/
shadowBlur: 10,
shadowColor: '',
shadowOffsetX: 0,
shadowOffsetY: 0,
opacity: 1
},
crossStyle: {
color: '#fff', /颜色,文章链接如下 Echart图表之颜色color配置项大全/
shadowBlur: 10,
shadowColor: '',
shadowOffsetX: 0,
shadowOffsetY: 0,
opacity: 1
},
animation: line,
animationThreshold: 2000,
animationDuration: 1000,
animationEasing: 'cubicOut',
animationDelay: 0,
animationDurationUpdate: 200,
animationEasingUpdate: exponentialOut,
},
showContent: true,
alwaysShowContent: false,
triggerOn: 'mousemove|click',
showDelay: 0,
hideDelay: 100,
enterable: false,
renderMode: 'html',
confine: false,
appendToBody: false,
className: 'echarts-tooltip echarts-tooltip-dark',
transitionDuration: 0.4,
position: [],
formatter: ()=>{}, /提示框浮层内容格式器,用这个可以修改提示框默认内容/
valueFormatter: (value: number | string) => string,
backgroundColor: '',
borderColor: '',
borderWidth: 0,
padding: 5,
textStyle: {
color: '#fff', /颜色,文章链接如下 Echart图表之颜色color配置项大全/
fontStyle: '',
fontWeight: '',
fontFamily: '',
fontSize: 14,
lineHeight : 20,
width: 220,
height: 20,
textBorderColor: '',
textBorderWidth: '',
textBorderType: 'solid',
textBorderDashOffset: 0,
textShadowColor: 'transparent',
textShadowBlur: 0,
textShadowOffsetX: 0,
textShadowOffsetY: 0,
overflow: 'none',
ellipsis: '',
rich: {},
},
extraCssText: 'box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);',
order: 'seriesAsc'
}
👉推荐相关文章:Echart图表 之 基本使用及配置项
👉推荐相关文章:Echart图表 之 title配置项大全
👉推荐相关文章:Echart图表 之 颜色color配置项大全
👉推荐相关文章:Echart图表 之 X轴(xAxis)与 Y轴(yAxis)配置项大全
👉推荐相关文章:Echart图表 之 legend图例组件配置项大全
👉推荐相关文章:Echart图表 之 toolbox工具栏组件配置项大全
|