vue使用Echarts图表
Posted mouseleo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue使用Echarts图表相关的知识,希望对你有一定的参考价值。
vue使用Echarts图表
在开发后台系统时,使用图表进行数据可视化,这样会使数据更直观、清晰、美观。所以我在项目里选用Echart,对部分数据进行图表显示。
一、使用Echarts的两种方法:
1.npm命令安装
npm install echarts --save
2.CDN方法引入
index.html中,<script src="https://cdnjs.cloudflare.com/ajax/libs/echarts/4.1.0/echarts.min.js"></script>
上面的两种方法,我采用的是第二种方法,一开始我用的是第一种方法,经过测试后发现项目运行速度会被拖慢,所以选用的第二种方法。
二、调用Echarts
//vue文件
<div class="echarts">
//ref 被用来给DOM元素或子组件注册引用信息,想要在Vue中直接操作DOM元素,就必须用ref属性进行注册
<div class="chart" ref="myEchartPillar" >
</div>
<div class="chart" ref="myEchartLine" >
</div>
</div>
<script>
export default
//渲染的图表的方法放在mounted(),因为mounted()在模板渲染成html后调用,通常是初始化页面完成后,再对html的dom节点进行一些需要的操作
mounted()
this.getPillar();
this.getLine();
,
methods:
// 渲染柱形图表
getPillar()
let that = this;
// 基于准备好的dom(myEchartPillar),初始化echarts实例
let myChart = echarts.init(this.$refs.myEchartPillar);
//指定图表的配置项和数据,绘制图表
myChart.setOption(
// 图表名称
title:
text: "柱形统计图"
,
// 图表颜色
color: ["#6284d3"],
// 提示
tooltip:
//触发类型,axis:坐标轴触发,主要在柱状图,折线图等会使用类目轴的图表中使用。
trigger: "axis",
axisPointer:
// 坐标轴指示器,坐标轴触发有效,默认为直线,可选为:‘line‘ | ‘shadow‘
type: "shadow"
,
grid:
show: true,
//grid 组件离容器左侧的距离。
left: "3%",
//grid 组件离容器右侧的距离。
right: "4%",
//grid 组件离容器下侧的距离。
bottom: "3%",
//grid 区域是否包含坐标轴的刻度标签。true这常用于『防止标签溢出』的场景,标签溢出指的是,标签长度动态变化时,可能会溢出容器或者覆盖其他组件。
containLabel: true,
// 网格背景色,此配置项生效的前提是,设置了 show: true
backgroundColor: "#E7F1F5"
,
//直角坐标系 grid 中的 x 轴
xAxis: [
//‘category‘ 类目轴
type: "category",
//坐标轴名称
name: "时间",
//坐标轴名称显示位置
nameLocation: "end",
//坐标数据
data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
//坐标轴刻度相关设置
axisTick:
// 为 true 可以保证刻度线和标签对齐
alignWithLabel: true
,
//坐标轴名称与轴线之间的距离
nameGap: 2
],
//直角坐标系 grid 中的 y 轴
yAxis: [
//‘value‘ 数值轴,适用于连续数据
type: "value",
//坐标轴名称
name: "使用量(次数)",
//坐标轴的标签是否响应和触发鼠标事件,默认不响应
triggerEvent: true
],
//系列列表。每个系列通过 type 决定自己的图表类型
series: [
//系列名称,用于tooltip的显示,legend 的图例筛选,在 setOption 更新数据和配置项时用于指定对应的系列
name: "柜子使用量",
//类型为柱状/条形图
type: "bar",
//柱条的宽度,不设时自适应。支持设置成相对于类目宽度的百分比。
barWidth: "60%",
//图形上的文本标签,可用于说明图形的一些数据信息
label:
normal:
//是否显示标签
show: true,
//通过相对的百分比或者绝对像素值表示标签相对于图形包围盒左上角的位置
position: "top"
,
//系列中的数据内容数组
data: [1, 3, 5, 7, 9, 11, 13]
]
);
//解决自适应
setTimeout(function()
window.addEventListener("resize", () =>
myChart.resize();
);
, 500);
,
// 获取折线图
getLine()
let that = this;
let myChart = echarts.init(this.$refs.myEchartLine);
myChart.setOption(
title:
text: "折线统计图"
// text: that.$t("profitChart.Revenuechart")
,
color: ["#6284d3"],
tooltip:
trigger: "axis",
formatter: "时间 : b<br/>收益 : c元",
axisPointer:
type: "line"
,
grid:
left: "3%",
right: "4%",
bottom: "3%",
containLabel: true
,
xAxis: [
type: "category",
name: "日期",
data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
boundaryGap: false,
axisTick:
alignWithLabel: true
,
nameGap: 2
],
yAxis: [
type: "value",
name: "金额(元)"
],
series: [
name: "柜子使用量",
//类型为折线图
type: "line",
//折线样式
lineStyle:
normal:
//宽度
width: 3,
//阴影颜色
shadowColor: "rgba(0,0,0,0.1)",
// 阴影的模糊范围
shadowBlur: 10,
// 阴影的纵向位移量
shadowOffsetY: 10
,
areaStyle:
normal:
// 折线范围内的背景色
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
offset: 0,
color: "#E7F1F5"
,
offset: 1,
color: "#E7F1F5"
])
,
data: [1, 3, 5, 7, 9, 11, 13]
]
);
setTimeout(function()
window.addEventListener("resize", () =>
myChart.resize();
);
, 500);
,
<script>
柱形图表示例图:
折线图表示例图:
注意事项:
有时候echarts会不显示,这个时候要注意是否有以下问题。
1.创建实例时,最好用let声明;
let myChart = echarts.init(this.$refs.myEchartPillar);
2.容器宽高不能设置百分比,要设置具体的数值;
<div style="height:790px;width:400px;" ref="myEchartPillar" ></div>
3.考虑dom有没有渲染;
渲染的图表的方法放在mounted()或updated()中,不要放在created()中。
饼图、散点图等图表用法与上类似,感兴趣的小伙伴儿可以写写例子,感受一下图表的神奇之处(~ ̄▽ ̄)~。
以上是关于vue使用Echarts图表的主要内容,如果未能解决你的问题,请参考以下文章
Vue中使用ECharts,根据父级DIV及窗口自适应图表,数据驱动图表