小程序中用Echarts

下载
  • 下载地址:

官方git网站。请按照下图可以进行下载,也可以通过git 手册.

  • 引入项目中
    第一步:

拷贝文件,将 echarts-for-weixin-master 项目里面的 ec-canvas 文件夹拷贝到项目目录中,

第二步:
在需要显示页面配置文件中配置组件及引入。

.json 配置组件

{
  "usingComponents": {
    "ec-canvas": "../../ec-canvas/ec-canvas"
  }
}

.wxml 使用组件

<!--index.wxml-->
<view class="box">
  <ec-canvas id="mychart-dom-bar" canvas-id="mychart-bar" ec="{{ ec }}"></ec-canvas>
</view>

.wcss 必须得样式

.box {
	width:100%;
	height:100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
} 

.js 脚本

// 1、引入依赖脚本
import * as echarts from '../../ec-canvas/echarts';
let chart = null;
// 2、进行初始化数据
function initChart(canvas, width, height) {
  chart = echarts.init(canvas, null, {
    width: width,
    height: height
  });
  canvas.setChart(chart);
  var option = {
    color: ['#37a2da', '#32c5e9', '#67e0e3'],
    tooltip: {
      trigger: 'axis',
      axisPointer: {            // 坐标轴指示器,坐标轴触发有效
        type: 'shadow'        // 默认为直线,可选为:'line' | 'shadow'
      }
    },
    legend: {
      data: ['热度', '正面', '负面']
    },
    grid: {
      left: 20,
      right: 20,
      bottom: 15,
      top: 40,
      containLabel: true
    },
    xAxis: [
      {
        type: 'value',
        axisLine: {
          lineStyle: {
            color: '#999'
          }
        },
        axisLabel: {
          color: '#666'
        }
      }
    ],
    yAxis: [
      {
        type: 'category',
        axisTick: { show: false },
        data: ['北京百星', '成都溧阳', '百度贴吧', '一点资讯', '微信', '微博', '知乎'],
        axisLine: {
          lineStyle: {
            color: '#999'
          }
        },
        axisLabel: {
          color: '#666'
        }
      }
    ],
    series: [
      {
        name: '热度',
        type: 'bar',
        label: {
          normal: {
            show: true,
            position: 'inside'
          }
        },
        data: [300, 270, 340, 344, 300, 320, 310],
        itemStyle: {
          // emphasis: {
          //   color: '#37a2da'
          // }
        }
      },
      {
        name: '正面',
        type: 'bar',
        stack: '总量',
        label: {
          normal: {
            show: true
          }
        },
        data: [120, 102, 141, 174, 190, 250, 220],
        itemStyle: {
          // emphasis: {
          //   color: '#32c5e9'
          // }
        }
      },
      {
        name: '负面',
        type: 'bar',
        stack: '总量',
        label: {
          normal: {
            show: true,
            position: 'left'
          }
        },
        data: [-20, -32, -21, -34, -90, -130, -110],
        itemStyle: {
          // emphasis: {
          //   color: '#67e0e3'
          // }
        }
      }
    ]
  };
  chart.setOption(option);
  return chart;
}
Page({
  onShareAppMessage: function (res) {
    return {
      title: 'ECharts',
      path: '/pages/index/index',
      success: function () { },
      fail: function () { }
    }
  },
  data: {
    ec: {
      onInit: initChart // 3、将数据放入到里面
    }
  },
  onReady() {
    setTimeout(function () {
      // 获取 chart 实例的方式
      console.log(chart)
    }, 2000);
  }
});

最后结果为下图,E charts图表是不是成功出来啦~~~

要在Vue中使用Echarts实现复合饼图,可以参考以下步骤: 1. 首先,确保你已经安装了Echarts和Vue的相关依赖包。你可以使用npm或yarn来安装它们。 2. 在Vue组件中引入Echarts,并在data属性中定义需要展示的数据。你可以参考结合之前提到的两篇文章,根据你的需求来定义数据的结构。 3. 在Vue组件的mounted钩子函数中,通过获取DOM元素的方式创建一个Echarts实例,并传入需要展示的DOM元素和数据。 4. 在Echarts实例中,使用series属性来定义复合饼图的主要饼图和辅助饼图。你可以使用markLine属性来画线并确定起点和终点坐标。 5. 如果需要设置复合饼图的起始角度,你可以使用startAngle属性来计算出合适的角度。 6. 最后,使用Echarts的setOption方法将配置项应用于实例,从而渲染出复合饼图。 下面是一个简单的代码示例,用于演示如何在Vue中使用Echarts实现复合饼图: ``` <template> <div id="chart"></div> </template> <script> import echarts from 'echarts'; export default { mounted() { // 获取DOM元素 const chartContainer = document.getElementById('chart'); // 创建Echarts实例 const chart = echarts.init(chartContainer); // 定义数据 const data = [ { value: 335, name: '饼图1' }, { value: 310, name: '饼图2' }, { value: 234, name: '饼图3' }, { value: 135, name: '饼图4' }, { value: 1548, name: '饼图5' } ]; // 设置配置项 const option = { series: [ { type: 'pie', radius: '50%', data: data }, { type: 'pie', radius: ['60%', '80%'], data: data } ], // 其他配置项... }; // 将配置项应用于实例 chart.setOption(option); } }; </script> ``` 请根据你的需求和数据结构进行适当的修改,以实现你想要的复合饼图效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值