vue里echarts实现折线图tooltip自定义样式

更新时间:2023-07-07 05:12:29 阅读: 评论:0

vue⾥echarts实现折线图tooltip⾃定义样式
效果
实现
先编写⽗组件:
<stacked-line-chart :tooltipData="tooltipData":monthNameData="monthNameData":allApplyCountData="allApplyCountData"
:hallApplyCountData="hallApplyCountData":netApplyCountData="netApplyCountData"
></stacked-line-chart>
<script>
export default{
data(){
return{
tooltipData:['2020-01','2020-02','2020-03','2020-04','2020-05','2020-06','2020-07','2020-09','2020-10','2020-12','2021-01','2021-02'],      monthNameData:['1⽉','2⽉','3⽉','4⽉','5⽉','6⽉','7⽉','9⽉','10⽉','12⽉','1⽉','2⽉'],// x轴⽉份数据
allApplyCountData:[120,132,101,134,90,230,210,120,132,101,134,90],// 总申办量
hallApplyCountData:[320,332,301,334,390,330,320,320,332,301,334,390],// 实体⼤厅申办量
netApplyCountData:[820,932,901,934,1290,1330,1320,820,932,901,934,1290],// ⽹上⼤厅申办量
};
},
}
</script>
在编写StackedLineChart组件
<template>
<div ref="stackedLineChart"class="stacked-line-chart-box"></div>
</template>
<script>
import*as echarts from'echarts';
export default{
name:'StackedLineChart',
props:{
// ⽤于提⽰
tooltipData:{
type: Array,
default:()=>{
return[];
}
},
/
/ x轴⽉份数据
monthNameData:{
type: Array,
default:()=>{
return[];
return[];
}
},
// 总申办量
allApplyCountData:{
type: Array,
default:()=>{
return[];
}
},
// 实体⼤厅申办量
hallApplyCountData:{
type: Array,
default:()=>{
return[];
}
},
/
/ ⽹上⼤厅申办量
netApplyCountData:{
type: Array,
default:()=>{
return[];
欧美
}
},
},
data(){
return{
option:{
tooltip:{
trigger:'axis',
padding:[8,10,8,10],
axisPointer:{
type:'line',
lineStyle:{
color:'rgba(0, 0, 0, 0.65)'
},
},
// ⾃定义提⽰框的内容
formatter:(params)=>{
let result =ltipData[params[0].dataIndex]+"</br>";
params.forEach(el =>{
result +=`${this.lor)}${el.riesName}:${el.data}</br>` })
return result;
}
},
color:['#9A47FF','#1890FF','#2FC25B'],
legend:{
fixturedata:['总申办量','实体⼤厅申办量','⽹上⼤厅申办量'],
left:'left',
icon:'circle',
padding:0,
itemGap:24,
itemWidth:6,
itemHeight:6,意大利语在线翻译
textStyle:{
color:'#333',
padding:[2,0,0,0],
lineHeight:20
}
},
grid:{
left:'0',
right:'2%',
bottom:'0',
containLabel:true,
},
xAxis:{
type:'category',
boundaryGap:fal,
data:[],
axisLine:{
lineStyle:{
color:'#E9E9E9'
}
},
axisTick:{
lineStyle:{
color:'#E9E9E9'
}
},
axisLabel:{
color:'#777777'
}
},
yAxis:{
type:'value',
nameTextStyle:{
color:'red'
},
axisLine:{
admit的用法show:fal
},
axisTick:{
show:fal
},
axisLabel:{
color:'#777777'
},
splitLine:{
lineStyle:{
color:'#E9E9E9',
type:'dashed'
}
}
},
ries:[
{
name:'总申办量',
zlevel:1,
type:'line',
stack:'总量',
symbol:'circle',
symbolSize:[2,2],
showSymbol:fal,
itemStyle:{
liccborderWidth:1,
borderColor:'#fff'
},
data:[]
},{
name:'实体⼤厅申办量',
zlevel:1,
type:'line',
stack:'总量',
symbol:'circle',
symbolSize:[2,2],
showSymbol:fal,
itemStyle:{
borderWidth:1,
borderColor:'#fff'
},
data:[]
},{
name:'⽹上⼤厅申办量',
zlevel:1,
type:'line',
power stripstack:'总量',
symbol:'circle',
symbolSize:[2,2],
showSymbol:fal,
itemStyle:{
borderWidth:1,
圣诞节英文手抄报borderColor:'#fff'
managers},
data:[]
}
],
}
};
},
mounted(){
this.initRender();
},
methods:{
// 初始化渲染
initRender(){
this.option.xAxis.data =hNameData;// x轴⽉份数据
this.option.ries[0].data =this.allApplyCountData;// 总申办量
this.option.ries[1].data =this.hallApplyCountData;// 实体⼤厅申办量
this.option.ries[1].data =this.hallApplyCountData;// 实体⼤厅申办量this.option.ries[2].data =thisApplyCountData;// ⽹上⼤厅申办量let chartDom =this.$refs.stackedLineChart;
let myChart = echarts.init(chartDom);
myChart.tOption(this.option);
},
// ⽣成⼤⼩⼀样样⾊不同的圆点
markDot(color){
let domHtml ='<span style="'+
'display: inline-block;'+
expect的用法'margin-right: 8px;'+
'margin-bottom: 2px;'+中国英语怎么写
'border-radius: 6px;'+
'width: 6px;'+
'height: 6px;'+
`background-color: ${color}`+
'"></span>'
return domHtml;
}
},
};
</script>
<style lang="scss"scoped>
.stacked-line-chart-box{
height: 388px;
}
</style>

本文发布于:2023-07-07 05:12:29,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/78/1083061.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:折线图   定义   编写   申办   样样   组件   实体
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图