cell单元格中绘制微型echarts图

需求效果图示例

cell单元格中绘制微型echarts图

实际完成效果图

cell单元格中绘制微型echarts图

**

代码实现

注:table表格为二次封装的子组件
-在table表格中 根据 scope.$index动态设置元素的id ,便于指定单元格的echarts初始化;

-在单元格中触发一个方法,传入当前的scope.row数据或者指定其他数据,并且传入 scope.$index 以及一个字符串便于识别当前是哪条数据的charts

-在方法中绘制echarts**

<el-table-column> <template slot="header" slot-scope="scope"> <div v-if="tableTitle == 'sale'"> <p v-if="dateType != '1'"> 近{{ dateType }}天累计 <br /> / 日均销量 </p> <p v-if="dateType == '1'">昨日累计销量</p> </div> <div v-if="tableTitle == 'fav'"> <p v-if="dateType != '1'"> 近{{ dateType }}天累计 <br /> / 日均收藏量 </p> <p v-if="dateType == '1'">昨日累计收藏</p> </div> </template> <div slot-scope="scope"> <span>{{ realRowName(scope.row, '0') || '-' }}</span> <span v-if="dateType != '1'"> / {{ isNaN(realRowName(scope.row, '0')) ? '-' : (realRowName(scope.row, '0') / (parseInt(dateType) - calcShelfTime(scope.row.real_created_time, '0') &lt; 0 ? parseInt(dateType): calcShelfTime(scope.row.real_created_time, '0'))).toFixed(0)}} </span> </div> </el-table-column> <el-table-column label="每日销量趋势" v-if="dateType != '1'"> <template slot-scope="scope"> {{ drawEcharts(scope.row, scope.$index, 'sale') }} <div :id="`tiger-sale-trend-index` + scope.$index"></div> </template> </el-table-column>

绘制echarts的方法(数据仅为示例,实际开发根据传进来的scope.row数据)注意此处初始化echarts对象时采用VUE的this.$nextTick方法,以防获取不到未渲染的节点元素。

drawEcharts() { //绘制趋势echarts // console.log(arguments) let option = { tooltip: { trigger: 'axis' }, // legend: { // data: ['每日30天销量分析'] // }, grid: { left: '10px', right: '30px', top: '40px', bottom: '10px', containLabel: true }, xAxis: { show: false, type: 'category', boundaryGap: false, data: ['03-21', '03-22', '03-23', '03-24', '03-25', '03-26', '03-27'] }, yAxis: { show: false, type: 'value' }, series: [ { name: '每日30天销量分析', type: 'line', data: [120, 500, 101, 86, 173, 230, 6] } ] }; let chartId = 'tiger-' + arguments[2] + '-trend-index' + arguments[1]; this.$nextTick(() => { let myChart = this.echarts.init(document.getElementById(chartId), 'macarons'); myChart.setOption(option); myChart.resize(); }); },

AND 不要忘记设置echarts的高度,否则一辈子也出不来图形(示例,根据实施开发调整)

&-frame { display: flex; flex-flow: column nowrap; justify-content: space-between; .price-bar { color: red !important; } .tiger-trend-charts { height: 60px; min-width: 100px; } }

到此这篇关于VUE+elementui组件在table-cell单元格中绘制微型echarts图的文章就介绍到这了,更多相关VUE elementui 单元格echarts图内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/c22ec262eac9d7467e8727c658d2de2b.html