本文主要是介绍echarts 实线 虚线,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<template><div class="hello"><div>折线图</div> <div id="line"></div></div>
</template><script>
export default {props: ['bar','info'],data () {return {}},mounted() {// 基于准备好的dom,初始化echarts实例var myChart = this.$echarts.init(document.getElementById('line'));myChart.setOption({legend: {// 必须与 series name对应data: ['2015 降水量'],bottom:0// top:10},grid: {// top: 10,// bottom: 20},xAxis: {t
这篇关于echarts 实线 虚线的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!