123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- <template>
- <div class="chart" :id="id"></div>
- </template>
- <script>
- import util from "@/helper/util.js";
- import partten from "@/helper/partten.js";
- import * as echarts from "echarts";
- export default {
- name: "multi-arrow-line-chart",
- componentName: "multi-arrow-line-chart",
- props: {
- width: {
- type: String,
- default: "100%",
- },
- height: {
- type: String,
- default: "13.889vh",
- },
- // 数据
- list: {
- type: Array,
- default: () => [
- {
- title: "功率",
- yAxisIndex: 0,
- value: [
- {
- text: "0m/s",
- value: 1,
- },
- {
- text: "2m/s",
- value: 2,
- },
- {
- text: "3m/s",
- value: 16,
- },
- {
- text: "4m/s",
- value: 3,
- },
- {
- text: "5m/s",
- value: 3,
- },
- {
- text: "6m/s",
- value: 31,
- },
- {
- text: "7m/s",
- value: 33,
- },
- {
- text: "8m/s",
- value: 43,
- },
- {
- text: "9m/s",
- value: 3,
- },
- {
- text: "10m/s",
- value: 3,
- },
- {
- text: "11m/s",
- value: 31,
- },
- {
- text: "12m/s",
- value: 3,
- },
- {
- text: "13m/s",
- value: 3,
- },
- ],
- },
- ],
- },
- // 单位
- units: {
- type: Array,
- default: () => ["()"],
- },
- showLegend: {
- type: Boolean,
- default: true,
- },
- },
- data() {
- return {
- id: "",
- chart: null,
- color: ["#606769"],
- };
- },
- computed: {
- legend() {
- return this.list.map((t) => {
- return t.title;
- });
- },
- xdata() {
- return this.list[0].value.map((t) => {
- return t.text;
- });
- },
- yAxis() {
- let result = [];
- this.units.forEach((value, index) => {
- result.push({
- type: "value",
- name: value,
- axisLabel: {
- formatter: "{value}",
- fontSize: util.vh(14),
- },
- //分格线
- splitLine: {
- lineStyle: {
- color: partten.getColor("gray") + 55,
- type: "dashed",
- },
- },
- });
- });
- return result;
- },
- series() {
- let result = [];
- this.list.forEach((value, index) => {
- var data = value.value.map((t) => {
- return t.value;
- });
- var arrowArr = [];
- data.forEach((dvalue, dindex) => {
- var item = dvalue;
- if (dindex < data.length / 2) {
- arrowArr.push({
- symbol: "arrow",
- symbolSize: 12,
- symbolRotate: -90,
- value: item,
- });
- } else {
- arrowArr.push({ symbol: "none", value: item });
- }
- });
- result.push({
- name: value.title,
- type: "line",
- smooth: true,
- zlevel: index,
- lineStyle: {
- type: "dotted", //dashed
- },
- yAxisIndex: value.yAxisIndex,
- data: arrowArr,
- });
- });
- return result;
- },
- },
- methods: {
- initChart() {
- const chart = echarts.init(this.$el);
- let option = {
- color: this.color,
- tooltip: {
- trigger: "axis",
- backgroundColor: "rgba(0,0,0,0.4)",
- borderColor: partten.getColor("gray"),
- textStyle: {
- color: "#fff",
- fontSize: util.vh(16),
- },
- },
- legend: {
- show: this.showLegend,
- data: this.legend,
- right: 56,
- icon: "circle",
- itemWidth: 6,
- inactiveColor: partten.getColor("gray"),
- textStyle: {
- color: partten.getColor("grayl"),
- fontSize: 12,
- },
- },
- grid: {
- top: util.vh(32),
- left: util.vh(40),
- right: util.vh(40),
- bottom: util.vh(24),
- },
- xAxis: [
- {
- type: "category",
- boundaryGap: false,
- axisLabel: {
- formatter: "{value}",
- fontSize: util.vh(14),
- textStyle: {
- color: partten.getColor("gray"),
- },
- },
- data: this.xdata,
- },
- ],
- yAxis: this.yAxis,
- series: this.series,
- };
- chart.clear();
- chart.setOption(option);
- this.resize = function() {
- chart.resize();
- };
- window.addEventListener("resize", this.resize);
- },
- },
- created() {
- this.id = "pie-chart-" + util.newGUID();
- },
- mounted() {
- this.$nextTick(() => {
- this.$el.style.width = this.width;
- this.$el.style.height = this.height;
- this.initChart();
- });
- },
- updated() {
- this.$nextTick(() => {
- this.initChart();
- });
- },
- unmounted() {
- window.removeEventListener("resize", this.resize);
- },
- };
- </script>
- <style lang="less">
- .chart {
- width: 100%;
- height: 100%;
- display: inline-block;
- }
- </style>
|