123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461 |
- <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: "img-line-chart",
- componentName: "img-line-chart",
- props: {
- width: {
- type: String,
- default: "100%",
- },
- height: {
- type: String,
- default: "13.889vh",
- },
- // 数据
- list: {
- type: Array,
- default: () => [
- {
- title: "日发电量",
- yAxisIndex: 0,
- value: [
- {
- text: "1",
- value: 1,
- weather: "sun",
- direction: "n",
- },
- {
- text: "2",
- value: 2,
- weather: "sun",
- direction: "s",
- },
- {
- text: "3",
- value: 1,
- weather: "sun",
- direction: "w",
- },
- {
- text: "4",
- value: 3,
- weather: "sun",
- direction: "e",
- },
- {
- text: "5",
- value: 3,
- weather: "sun",
- direction: "nw",
- },
- {
- text: "6",
- value: 3,
- weather: "sun",
- direction: "ne",
- },
- {
- text: "7",
- value: 3,
- weather: "sun",
- direction: "se",
- },
- {
- text: "8",
- value: 3,
- weather: "sun",
- direction: "sw",
- },
- {
- text: "9",
- value: 3,
- weather: "sun",
- direction: "sw",
- },
- {
- text: "10",
- value: 3,
- weather: "sun",
- direction: "sw",
- },
- {
- text: "11",
- value: 3,
- weather: "sun",
- direction: "sw",
- },
- {
- text: "12",
- value: 3,
- weather: "sun",
- direction: "sw",
- },
- {
- text: "13",
- value: 3,
- weather: "sun",
- direction: "sw",
- },
- {
- text: "14",
- value: 3,
- weather: "sun",
- direction: "sw",
- },
- {
- text: "15",
- value: 3,
- weather: "sun",
- direction: "sw",
- },
- {
- text: "16",
- value: 3,
- weather: "sun",
- direction: "sw",
- },
- ],
- },
- {
- title: "上网电量",
- yAxisIndex: 0,
- value: [
- {
- text: "1",
- value: 1,
- },
- {
- text: "2",
- value: 2,
- },
- {
- text: "3",
- value: 1,
- },
- {
- text: "4",
- value: 3,
- },
- ],
- },
- ],
- },
- // 单位
- units: {
- type: Array,
- default: () => ["(MW)"],
- },
- showLegend: {
- type: Boolean,
- default: false,
- },
- },
- data() {
- return {
- id: "",
- chart: null,
- color: ["#05bb4c", "#4b55ae", "#fa8c16", "#f8de5b"],
- imgs: {
- sun: require("@assets/png/weather/sun.png"),
- cloud: require("@assets/png/weather/cloud.png"),
- rain: require("@assets/png/weather/rain.png"),
- },
- directions: {
- n: require("@assets/png/direction/n.svg"),
- s: require("@assets/png/direction/s.svg"),
- w: require("@assets/png/direction/w.svg"),
- e: require("@assets/png/direction/e.svg"),
- nw: require("@assets/png/direction/nw.svg"),
- ne: require("@assets/png/direction/ne.svg"),
- sw: require("@assets/png/direction/sw.svg"),
- se: require("@assets/png/direction/se.svg"),
- },
- };
- },
- computed: {
- legend() {
- return this.list.map((t) => {
- return t.title;
- });
- },
- xdata() {
- return this.list[0].value.map((t) => {
- return t.text;
- });
- },
- yAxis() {
- let result = [
- {
- type: "value",
- name: "",
- axisLabel: {
- show: false,
- },
- //分格线
- splitLine: {
- show: false,
- },
- min: 0,
- max: 10,
- },
- ];
- this.units.forEach((value, index) => {
- result.push({
- type: "value",
- name: value,
- axisLabel: {
- formatter: "{value}",
- fontSize: util.vh(14),
- },
- //分格线
- splitLine: {
- lineStyle: {
- color: partten.getColor("gray"),
- type: "dashed",
- },
- },
- });
- });
- return result;
- },
- series() {
- let result = [];
- this.list.forEach((value, index) => {
- if (index == 0) {
- result.push({
- name: value.title,
- type: "line",
- smooth: true,
- zlevel: index,
- lineStyle: {
- normal: {
- color: this.color[index],
- width: 1,
- },
- },
- yAxisIndex: value.yAxisIndex,
- data: value.value.map((t) => {
- return {
- value: t.value,
- label: {
- show: true,
- position: "top",
- formatter: function (e) {
- return [" {weather| }"];
- },
- rich: {
- weather: {
- height: 15,
- backgroundColor: {
- image: this.imgs[t.weather],
- },
- },
- },
- borderWidth: 1,
- borderRadius: 4,
- padding: [4, 10],
- lineHeight: 26,
- distance: 20,
- },
- };
- }),
- });
- result.push({
- name: "风向",
- type: "bar",
- smooth: true,
- zlevel: 9999,
- lineStyle: {
- normal: {
- color: this.color[index],
- width: 1,
- },
- },
- yAxisIndex: 0,
- barGap: "0%",
- barCategoryGap: "0%",
- clip: false,
- data: value.value.map((t) => {
- return {
- value: -2,
- label: {
- show: true,
- position: "inside",
- formatter: function (e) {
- return [" {direction| }"];
- },
- rich: {
- direction: {
- height: 20,
- backgroundColor: {
- image: this.directions[t.direction],
- },
- },
- },
- borderWidth: 1,
- borderRadius: 4,
- padding: [4, 10],
- lineHeight: 26,
- distance: 20,
- },
- itemStyle: {
- borderWidth: 1,
- borderColor: "#606769",
- color: "transparent",
- },
- };
- }),
- });
- } else {
- result.push({
- name: value.title,
- type: "line",
- smooth: true,
- zlevel: index,
- label: {
- show: false,
- position: "top",
- borderWidth: 1,
- borderRadius: 4,
- padding: [4, 10],
- lineHeight: 26,
- distance: 20,
- },
- lineStyle: {
- normal: {
- color: this.color[index],
- width: 1,
- },
- },
- yAxisIndex: value.yAxisIndex,
- data: value.value.map((t) => {
- return t.value;
- }),
- });
- }
- });
- 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)",
- textStyle: {
- color: "#fff",
- fontSize: util.vh(16),
- },
- formatter: function (params) {
- let str = "";
- for (let i = 0; i < params.length; i++) {
- if (params[i].seriesName == "风向") {
- continue;
- }
- if (i == 0) {
- str += `${params[i].name}<br/>${params[i].seriesName}: ${
- params[i].data.value ? params[i].data.value : params[i].data
- }<br/>`;
- continue;
- }
- str += `${params[i].seriesName}: ${
- params[i].data.value ? params[i].data.value : params[i].data
- }<br/>`;
- }
- return str;
- },
- },
- 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: 32,
- left: 8,
- right: 8,
- bottom: 32,
- containLabel: true,
- },
- xAxis: [
- {
- type: "category",
- // boundaryGap: false,
- axisLabel: {
- formatter: "{value}",
- fontSize: 14,
- textStyle: {
- color: partten.getColor("gray"),
- },
- },
- data: this.xdata,
- offset: 32,
- axisLine: { onZero: true },
- },
- ],
- 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(() => {
- setTimeout(() => {
- this.$el.style.width = this.width;
- this.$el.style.height = this.height;
- this.initChart();
- }, 1000);
- });
- },
- updated() {
- this.$nextTick(() => {
- this.initChart();
- });
- },
- unmounted() {
- window.removeEventListener("resize", this.resize);
- },
- };
- </script>
- <style lang="less">
- .chart {
- width: 100%;
- height: 100%;
- display: inline-block;
- }
- </style>
|