echarts5 在vue3 中tooltip显示不出来
Posted ___mouM
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了echarts5 在vue3 中tooltip显示不出来相关的知识,希望对你有一定的参考价值。
const unwarp = (obj) => obj && (obj.__v_raw || obj.valueOf() || obj);
unwarp(this.chart).setOption(this.getOption());
<div id="app"> <div id="chart-demo"></div> </div> <script> import { createApp } from \'vue\'; import * as echarts from "echarts"; const unwarp = (obj) => obj && (obj.__v_raw || obj.valueOf() || obj); createApp({ data(){ return { chart:null } }, mounted{ let dom = document.getElementById("chart-demo"); this.chart = echarts.init(dom); unwarp(this.chart).setOption(this.getOption()); }, methods:{ getOption(){ return { xAxis: { type: \'category\', data: [\'Mon\', \'Tue\', \'Wed\', \'Thu\', \'Fri\', \'Sat\', \'Sun\'] }, yAxis: { type: \'value\' }, tooltip:{}, series: [{ data: [150, 230, 224, 218, 135, 147, 260], type: \'line\' }] }; } } }).mount("#app"); </script>
转载:https://blog.csdn.net/xy109/article/details/113869790
以上是关于echarts5 在vue3 中tooltip显示不出来的主要内容,如果未能解决你的问题,请参考以下文章
highcharts怎么以x轴的值作为条件查询数据库,结果显示在tooltip中