Blame view

src/components/echart/Brokenline/chart.vue 6.87 KB
xiaomiao committed
1 2
<template>
    <!-- 折线图 -->
任超 committed
3
    <Echart :options="options" id="bottomLeftChart" height="100%" width="100%"></Echart>
xiaomiao committed
4 5 6 7 8
</template>

<script>
import Echart from "@/common/echart";
export default {
任超 committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
    data () {
        return {
            xAxisData: {},
            yAxisData1: {},
            yAxisData2: {},
            yAxisData3: {},
            options: {},
        };
    },
    components: {
        Echart,
    },
    props: {
        cdata: {
            type: Object,
            default: () => ({}),
        }
xiaomiao committed
26
    },
任超 committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
    methods: {
        hexToRgba (hex, opacity) {
            let rgbaColor = "";
            let reg = /^#[\da-f]{6}$/i;
            if (reg.test(hex)) {
                rgbaColor = `rgba(${parseInt("0x" + hex.slice(1, 3))},${parseInt(
                    "0x" + hex.slice(3, 5)
                )},${parseInt("0x" + hex.slice(5, 7))},${opacity})`;
            }
            return rgbaColor;
        }
    },
    watch: {
        cdata: {
            handler (newData) {
                this.xAxisData = newData.echartData.map(v => v.name);
                this.yAxisData1 = newData.echartData.map(v => v.value1);
                this.yAxisData2 = newData.echartData.map(v => v.value2);
                this.yAxisData3 = newData.echartData.map(v => v.value3);
                this.options = {
                    color: newData.color,
                    legend: {
                        center: true,
                        top: '20%',
                        data: newData.legendItem,
                        textStyle: {
                            color: '#00DEFF'
                        }
                    },
                    // calculable: true,
                    tooltip: {
                        trigger: "axis",
                        formatter: function (params) {
                            let html = '';
                            params.forEach(v => {
                                html += `<div style="color: #000;font-size: 14px;line-height: 24px background-color: #000000">
xiaomiao committed
63 64 65 66
                <span style="display:inline-block;margin-right:5px;border-radius:10px;width:10px;height:10px;background-color:${newData.color[v.componentIndex]};"></span>
                ${v.seriesName}.${v.name}
                <span style="color:${newData.color[v.componentIndex]};font-weight:700;font-size: 18px">${v.value}</span>
                个`;
任超 committed
67 68 69 70
                            })
                            return html
                        },
                        extraCssText: 'background: #85a2eb; border-radius: 0;box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);color: #333;',
xiaomiao committed
71

任超 committed
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
                    },
                    // grid: {
                    //     top: 70,
                    //     containLabel: true
                    // },
                    grid: {
                        top: "30%",
                        left: "3%",
                        right: "6%",
                        bottom: "8%",
                        containLabel: true,
                    },
                    xAxis: [{
                        type: 'category',
                        axisLine: {
                            show: true,
                            lineStyle: {
                                color: "#458ACF"
                            }
                        },
                        axisLabel: {
                            inside: false,
                            textStyle: {
                                color: 'rgba(255, 255, 255,0.7)', // x轴颜色
                                fontWeight: 'normal',
                                fontSize: '12',
                                lineHeight: 22
                            }
                        },
                        data: this.xAxisData
                    }],
                    yAxis: [{
                        type: "value",
                        axisLabel: {
                            textStyle: {
                                color: "rgba(255, 255, 255,0.7)"
                            }
                        },
                        splitLine: {
                            show: true,
                            lineStyle: {
                                color: "#458ACF"
                            }
                        },
                        axisLine: {
                            show: true,
                            lineStyle: {
                                color: "#458ACF"
                            }
                        },
                        axisTick: {
                            show: false
                        }
                    }],
                    series: [{
                        name: newData.legendItem[0],
                        type: "line",
                        smooth: true, //是否平滑
                        showSymbol: false,
xiaomiao committed
131
                        symbol: 'circle',
任超 committed
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
                        symbolSize: 6,
                        zlevel: 3,
                        lineStyle: {
                            normal: {
                                color: newData.color[0],
                                shadowBlur: 3,
                                shadowColor: this.hexToRgba(newData.color[0], 0.5),
                                shadowOffsetY: 0
                            }
                        },
                        data: this.yAxisData1
                    }, {
                        name: newData.legendItem[1],
                        type: "line",
                        smooth: true,
                        showSymbol: false,
xiaomiao committed
148
                        symbol: 'circle',
任超 committed
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
                        symbolSize: 8,
                        zlevel: 3,
                        lineStyle: {
                            normal: {
                                color: newData.color[1],
                                shadowBlur: 0,
                                shadowColor: this.hexToRgba(newData.color[1], 0.5),
                                shadowOffsetY: 0
                            }
                        },
                        data: this.yAxisData2
                    },
                    {
                        name: newData.legendItem[2],
                        type: "line",
                        smooth: true,
                        showSymbol: false,
xiaomiao committed
166
                        symbol: 'circle',
任超 committed
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
                        symbolSize: 8,
                        zlevel: 3,
                        lineStyle: {
                            normal: {
                                color: newData.color[2],
                                shadowBlur: 3,
                                shadowColor: this.hexToRgba(newData.color[2], 0.5),
                                shadowOffsetY: 0
                            }
                        },
                        data: this.yAxisData3
                    }
                    ]
                };
            },
            immediate: true,
            deep: true,
xiaomiao committed
184 185 186 187
        },
    },
};
</script>