tooltip: {
trigger: 'axis',
axisPointer: { // 坐标轴指示器,坐标轴触发有效
type: &...
yekong
4年前 (2021-03-25)
喜欢
导入echarts时用:
import echarts from 'echarts'
出现 “Cannot read property ‘init’ of undefined” 报错,改成
import * as echarts from 'echar...
yekong
4年前 (2021-02-07)
喜欢
这里用到了echarts实现图表刷新
和监听网页大小变化
mounted() {
this.draw();
window.addEventListener('resize', this.draw)
},
beforeRouteLeave...
yekong
4年前 (2020-12-31)
喜欢
this.chart.clear();
this.chart.resize();
...
yekong
4年前 (2020-12-31)
喜欢
yAxis: {
axisTick: {
show: false
},
},
...
yekong
4年前 (2020-12-26)
喜欢
yAxis: {
axisLine:{
lineStyle:{
color:'#2b5050',
width:1,//这里是为了突出显示加上的
...
yekong
4年前 (2020-12-26)
喜欢
xAxis: {
data: data,
axisLabel: {
show: true,
textStyle: {
color: '#c3dbff', //更改坐标轴文字颜色
...
yekong
4年前 (2020-12-26)
喜欢
lines2() {
let myChart = this.$echarts.init(this.$refs.myChart2)
// 绘制图表
myChart.setOptio
n({
"textStyle...
yekong
4年前 (2020-12-24)
喜欢
类似这样的效果
drawLine() {
let myChart = this.$echarts.init(this.$refs.charts)
var colors = ["rgba(79, 199, 234, 1)", &quo...
yekong
4年前 (2020-12-24)
喜欢
效果
用到的插件 建议最新版
<script src="js/echarts.min.js"></script>
<script src="js/echarts-liquidfill.js"...
yekong
4年前 (2020-12-19)
喜欢