美文网首页
uni-app中使用Echarts绘画图表

uni-app中使用Echarts绘画图表

作者: 刚刚8888 | 来源:发表于2020-06-08 09:44 被阅读0次
    1、下载安装

    npm install echarts mpvue-echarts --save
    这时,在node_modules里面会多出 echarts、mpvue-echats 、zrender 三个目录

    2、页面引入

    业务层

     <template>
            <view class="container">
                <view>
                    <view class="canvasView">
                        <mpvue-echarts class="ec-canvas" @onInit="lineInit" canvasId="line" ref="lineChart" />
                    </view>
                </view>
            </view>
    </template>
    

    逻辑层

    <script>
        import * as echarts from '@/components/echarts/echarts.simple.min.js';
        import mpvueEcharts from '@/components/mpvue-echarts/src/echarts.vue';
        export default {
            data() {
                return {
                    updateStatus: false,
                    line: {
                        legend: {
                            data: ['邮件营销']
                        },
                        xAxis: {
                            type: 'category',
                            data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
                        },
                        yAxis: {
                            type: 'value',
                            data: []
                        },
                        dataZoom: [{
                            type: 'slider',
                            start: 30,
                            end: 100,
                            zoomLock: false,
                        }],
                        grid: {
                            left: 40,
                            right: 40,
                            bottom: 20,
                            top: 40,
                            containLabel: true
                        },
                        series: [{
                            data: [],
                            data: [820, 932, 901, 934, 1290, 1330, 1320],
                            type: 'line',
                            color: ['#5eb4e2'], //折线条的颜色
                        }]
                    }
                }
            },
            methods: {
                lineInit(e) {
                    let {
                        width,
                        height
                    } = e;
                    let canvas = this.$refs.lineChart.canvas
                    echarts.setCanvasCreator(() => canvas);
                    let lineChart = echarts.init(canvas, null, {
                        width: width,
                        height: height
                    })
                    canvas.setChart(lineChart)
                    lineChart.setOption(this.line)
                    this.$refs.lineChart.setChart(lineChart)
                },
            },
            components: {
                mpvueEcharts
            }
        }
    </script>
    

    样式自己设定

    <style>
    
        .ec-canvas {
            display: flex;
            height: 100%;
            flex: 1;
        }
    
        .canvasView {
            width: 700upx;
            height: 500upx;
        }
        
    </style>
    

    相关文章

      网友评论

          本文标题:uni-app中使用Echarts绘画图表

          本文链接:https://www.haomeiwen.com/subject/uvpvzhtx.html