echarts折线交易分析点击事件交易笔数分析

<template>
    <div class="lines">
        <div class="switchButton">
            <a :class="{'active':value==1}" @click="handleSelect(1)">月</a>
            <a :class="{'active':value==2}" @click="handleSelect(2)">日</a>
        </div>
        <div id="bottom_1">

        </div>
    </div>

</template>

<script>
export default {
    name: '',
    data() {
        return {
            value: 2,
            xAxisData: [],
            seriesData: [],
            selected: {},
            legendData: []
        }
    },
    methods: {
        handleSelect(val) {
            this.xAxisData = [];
            this.seriesData = [];
            this.legendData = [];
            this.selected = {};
            this.value = val;
            let curYear = new Date().getFullYear();
            let curMonth = new Date().getMonth();

            let colorList = ['#bf232a', '#feed2c', '#2c7bfe', '#feac2c', '#ff7b7e', '#2cd9fe', '#a262f2', '#2ca8fe'];
            if (val == 1) {
                let year = [curYear - 1, curYear];
                for (let i = 0; i < 12; i++) {
                    this.xAxisData.push((i + 1) + '月');
                }
                for (let i = 0; i < year.length; i++) {
                    this.legendData.push(year[i] + '年');
                    let obj = {
                        name: year[i] + '年',
                        type: 'line',
                        symbol: 'circle',
                        smooth: false,
                        itemStyle: {
                            color: colorList[i % 8]
                        },
                        lineStyle: {
                            width: 1,
                            color: colorList[i % 8],
                        },
                        data: []
                    }
                    for (let j = 0; j < 12; j++) {
                        obj.data.push((Math.random() * 300).toFixed(0));
                    }
                    let obj1 = {
                        name: year[i] + '年',
                        type: 'line',
                        symbol: 'circle',
                        smooth: false,
                        xAxisIndex: 1,
                        yAxisIndex: 1,
                        itemStyle: {
                            color: colorList[i % 8]
                        },
                        lineStyle: {
                            width: 1,
                            color: colorList[i % 8],
                        },
                        data: []
                    }
                    for (let j = 0; j < 12; j++) {
                        obj1.data.push((Math.random() * 300).toFixed(0));
                    }
                    this.seriesData.push(obj);
                    this.seriesData.push(obj1);
                }

            } else {
                let dateLength = new Date(curYear, curMonth, 0).getDate();
                // console.log('日期',dateLength,curYear,curMonth,new Date(curYear, curMonth, 0))
                for (let i = 0; i < dateLength; i++) {
                    this.xAxisData.push((i + 1) + '号');

                }
                for (let i = 0; i < 12; i++) {
                    this.legendData.push((i + 1) + '月');
                    this.selected[(i + 1) + '月'] = false;
                    if (i < 4) {
                        this.selected[(i + 1) + '月'] = true;
                    }
                    let obj = {
                        name: (i + 1) + '月',
                        type: 'line',
                        symbol: 'circle',
                        smooth: false,
                        itemStyle: {
                            color: colorList[i % 8]
                        },
                        lineStyle: {
                            width: 1,
                            color: colorList[i % 8],
                        },
                        data: []
                    }
                    for (let j = 0; j < dateLength; j++) {
                        obj.data.push((Math.random() * 300).toFixed(0));
                    }
                    let obj1 = {
                        name: (i + 1) + '月',
                        type: 'line',
                        symbol: 'circle',
                        xAxisIndex: 1,
                        yAxisIndex: 1,
                        smooth: false,
                        itemStyle: {
                            color: colorList[i % 8]
                        },
                        lineStyle: {
                            width: 1,
                            color: colorList[i % 8],
                        },
                        data: []
                    }
                    for (let j = 0; j < dateLength; j++) {
                        obj1.data.push((Math.random() * 300).toFixed(0));
                    }

                    this.seriesData.push(obj);
                    this.seriesData.push(obj1);
                }

            }
            this.setChart()
        },
        // 金钱交易分析
        setChart() {
            let option = {
                title: [
                    {
                        text: '【交易笔数分析】',
                        textStyle: {
                            fontSize: 12,
                            color: '#75deef',
                            fontWeight: 'normal'
                        },
                        top: '24%',
                        left: '20%'
                    },
                    {
                        text: '【交易金额分析】',
                        textStyle: {
                            fontSize: 12,
                            color: '#75deef',
                            fontWeight: 'normal'
                        },
                        top: '24%',
                        right: '12%'
                    },
                ],
                grid: [
                    {
                        show: false,
                        left: '2%',
                        top: '38%',
                        right: '51%',
                        bottom: 0,
                        containLabel: true,
                    },
                    {
                        show: false,
                        left: '51%',
                        top: "38%",
                        bottom: 0,
                        right: '2%',
                        containLabel: true,

                    },
                ],
                tooltip: {
                    trigger: 'item',
                    axisPointer: {
                        type: 'none',

                    },
                    backgroundColor: '#11367a',
                    formatter: (params) => {
                        let seriesId = params.seriesId.substr(params.seriesId.length - 1, 1)
                        if (seriesId == 0) {
                            return params.seriesName + "/" + params.name + "<br>" + "交易笔数:" + params.value + '笔'
                        } else {
                            return params.seriesName + "/" + params.name + "<br>" + "交易金额:" + params.value + '元'
                        }

                    },
                    textStyle: {
                        color: '#6dd0e3',
                        fontSize: 10,
                    },
                },
                legend: {
                    type: 'scroll',
                    top: '10%',
                    textStyle: {
                        color: '#75deef',
                        padding: [3, 0, 0, 0],
                        fontSize: 12
                    },
                    pageTextStyle: {
                        color: '#75deef'
                    },
                    pageIconSize: 10,
                    pageIconColor: '#75deef',
                    itemWidth: 12,
                    itemHeight: 7,
                    right: "15%",
                    left: '15%',
                    selected: this.selected,
                    data: this.legendData
                },
                xAxis: [
                    {
                        type: 'category',
                        data: this.xAxisData,
                        boundaryGap: false,
                        axisLabel: {
                            fontSize: 9,
                            color: '#75deef',
                            interval: 0,
                            showMaxLabel: true,
                            showMinLabel: true,
                            formatter: (value, index) => {
                                if (this.value == 1) {
                                    if (index % 2 == 1) {
                                        return value
                                    }
                                } else {
                                    if ((index + 1) % 5 == 0) {
                                        return value
                                    }
                                }
                                if (index == 0) {
                                    return value
                                }
                            }
                        },
                        axisLine: {
                            lineStyle: {
                                color: '#1a3c58'
                            }
                        },
                        splitLine: {
                            show: false,
                        },
                        axisTick: {
                            show: true,
                            inside: true
                        }
                    },
                    {
                        gridIndex: 1,
                        type: 'category',
                        data: this.xAxisData,
                        axisLabel: {
                            fontSize: 9,
                            color: '#75deef',
                            interval: 0,
                            showMaxLabel: true,
                            showMinLabel: true,
                            formatter: (value, index) => {
                                if (this.value == 1) {
                                    if (index % 2 == 1) {
                                        return value
                                    }
                                } else {
                                    if ((index + 1) % 5 == 0) {
                                        return value
                                    }
                                }
                                if (index == 0) {
                                    return value
                                }
                            }
                        },
                        axisLine: {

                            lineStyle: {
                                color: '#1a3c58'
                            }
                        },
                        splitLine: {
                            show: false,
                        },
                        axisTick: {
                            show: true,
                            inside: true
                        }
                    },

                ],
                yAxis: [
                    {
                        type: 'value',
                        splitLine: {
                            show: false,
                        },
                        min: 0,
                        max: 300,
                        splitNumber: 5,
                        axisLabel: {
                            showMaxLabel: false,
                            fontSize: 9,
                            color: '#75deef'
                        },
                        name: '(笔)',
                        nameGap: -5,
                        nameTextStyle: {
                            color: '#75deef',
                            fontSize: 9,
                            align: 'right',
                            padding: [0, 6, 0, 0]
                        },
                        axisLine: {
                            lineStyle: {
                                color: '#1a3c58'
                            }
                        },
                        axisTick: {
                            length: 3,
                        }
                    },

                    {
                        gridIndex: 1,
                        type: 'value',
                        min: 0,
                        max: 300,
                        interval: 50,
                        splitLine: {
                            show: false,
                        },
                        axisLabel: {
                            showMaxLabel: false,
                            fontSize: 9,
                            color: '#75deef'
                        },
                        name: '(元)',
                        nameGap: -5,
                        nameTextStyle: {
                            color: '#75deef',
                            fontSize: 9,
                            align: 'right',
                            padding: [0, 6, 0, 0]
                        },
                        axisLine: {
                            lineStyle: {
                                color: '#1a3c58'
                            }
                        },
                        axisTick: {
                            length: 3,
                        }
                    },
                ],
                series: this.seriesData
            };
            let myChart = this.$echarts(document.getElementById('bottom_1'));

            myChart.clear();
            myChart.resize()
            myChart.setOption(option);
            myChart.on('legendselectchanged', (params) => {
                let arr = [];
                for (let i in params.selected) {
                    if (params.selected[i] == true) {
                        arr.push(params.selected[i])
                    }
                }
                if (arr.length > 4) {
                    this.$Modal.error({
                        content: "<p>当前最多显示4个图例</p>"
                    });
                    myChart.dispatchAction({
                        type: 'legendUnSelect',
                        // 图例名称
                        name: params.name
                    })
                }

            });
        },
    },
    mounted() {
        this.handleSelect(this.value);
        // this.setChart ();
    },
}
</script>

<style lang="less" scoped>
.lines {
    height: 100%;
    width: 100%;

    #bottom_1 {
        height: 100%;
        width: 100%;
    }

    position: relative;

    .switchButton {
        position: absolute;
        z-index: 5;
        right: 10px;
        top: 15px;
        border: 1px solid #028bff;
        border-radius: 5px;
        padding: 0;

        .active {
            background: #0454a1;
        }

        a {
            display: inline-block;
            color: #fff;
            padding: 1px 8px;
        }

    }
}

</style>

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值