123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- <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: "multiple-bar-chart",
- componentName: "multiple-bar-chart",
- props: {
- width: {
- type: String,
- default: "100%",
- },
- height: {
- type: String,
- default: "800px",
- },
-
- bardata: {
- type: Object,
- default: () => {
- return {
- area: [
- "风场1",
- "风场2",
- "风场3",
- "风场4",
- "风场5",
- "风场6",
- "风场7",
- "风场8",
- "风场9",
- ],
- legend: [
- "实际电量",
- "计划检修损失",
- "非计划检修损失",
- "限电损失",
- "受累损失",
- "性能损失",
- "理论发电量",
- ],
- data: [
- [1320, 1302, 901, 634, 1390, 1330, 1320, 1000, 500],
- [320, 302, 301, 334, 390, 330, 320, 100, 50],
- [320, 302, 301, 334, 390, 330, 320, 100, 50],
- [1320, 1302, 901, 634, 1390, 1330, 1320, 1000, 500],
- [320, 302, 301, 334, 390, 330, 320, 100, 50],
- [320, 302, 301, 334, 390, 330, 320, 100, 50],
- [1320, 1302, 901, 634, 1390, 1330, 1320, 1000, 500],
- [320, 302, 301, 334, 390, 330, 320, 100, 50],
- ],
- };
- },
- },
- lineData: {
- type: Array,
- default: () => [200, 350, 400, 500, 600, 700, 800, 900, 1200],
- },
- lineName: {
- type: String,
- default: "损失电量",
- },
-
- units: {
- type: Array,
- default: () => ["(万KWh)", "(风速)"],
- },
-
- showLegend: {
- type: Boolean,
- default: true,
- },
-
- color: {
- type: Array,
- default: () => [
- "#323E6F",
- "#e17e23",
- "#ba3237",
- "#c531c7",
- "#ffffff",
- "#EDEB2F",
- ],
- },
-
- pageSize: {
- type: Number,
- default: 20,
- },
- },
- data() {
- return {
- id: "",
- chart: null,
- themeName: "light",
- areaData: [],
- };
- },
- methods: {
- initChart() {
- let chart = echarts.init(this.$el);
- this.chart = chart;
- let option = {
- color: this.color,
- grid: {
- left: 40,
- right: 40,
- bottom: 16,
- top: 16,
- containLabel: true,
- },
- legend: {
- show: this.showLegend,
- data: this.bardata.legend,
- right: 56,
-
- itemWidth: 8,
- itemHeight: 8,
- inactiveColor:
- this.themeName === "dark" ? partten.getColor("gray") : "#838383",
- textStyle: {
- color:
- this.themeName === "dark" ? partten.getColor("grayl") : "#838383",
- fontSize: 12,
- },
- },
- tooltip: {
- trigger: "axis",
- backgroundColor: true
- ? "rgba(255,255,255,0.9)"
- : "rgba(255,255,255,0.9)",
- borderColor:
- this.themeName === "dark" ? partten.getColor("gray") : "#838383",
- textStyle: {
- color: this.themeName === "dark" ? "#fff" : "#838383",
- fontSize: util.vh(16),
- },
- },
- dataZoom: [
- {
- type: "inside",
- start: 0,
- end: this.end,
- yAxisIndex: [0],
- },
- {
- start: 0,
- end: this.end,
- top: 20,
- bottom: 40,
- yAxisIndex: [0],
- backgroundColor: "transparent",
-
- handleStyle: {
- color:
- this.themeName === "dark"
- ? partten.getColor("green")
- : partten.getColor("blue"),
- },
- moveHandleSize: 0,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- fillerColor: "transparent",
- textStyle: {
- color:
- this.themeName === "dark"
- ? partten.getColor("grayl")
- : "#838383",
- },
- borderColor:
- this.themeName === "dark" ? partten.getColor("gray") : "#838383",
- brushSelect: false,
- },
- ],
- yAxis: [
- {
- type: "category",
- axisLabel: {
- color:
- this.themeName === "dark"
- ? partten.getColor("gray")
- : "#838383",
- },
- inverse: true,
-
-
- axisLine: {
- show: false,
- },
- axisTick: {
- show: false,
- },
- data: this.areaData,
- },
- ],
- xAxis: [
- {
- type: "value",
- name: "万kWh",
- axisLabel: {
- color:
- this.themeName === "dark"
- ? partten.getColor("gray")
- : "#838383",
-
- },
- axisLine: {
- type: "dashed",
- lineStyle: {
- color:
- this.themeName === "dark"
- ? partten.getColor("gray")
- : "#838383",
- },
- width: 5,
- },
- axisTick: {
- show: false,
- },
- splitLine: {
- lineStyle: {
- type: "dashed",
- dashOffset: 10,
- color: this.themeName === "dark" ? "#5a6162" : "#838383" + 80,
- },
- },
- },
- {
- type: "value",
- name: "",
- axisLabel: {
- show: false,
-
-
- },
- axisLine: {
- show: false,
- },
- axisTick: {
- show: false,
- },
- splitLine: {
- show: false,
- },
- },
- ],
- series: [],
- };
- if (this.bardata && this.bardata.legend) {
-
- for (var i = 0; i < this.bardata.legend.length; i++) {
- option.series.push({
- name: this.bardata.legend[i].name,
- type: "bar",
- stack: "总量",
- barWidth: 16,
- label: {
- show: false,
- position: "insideRight",
- },
- data: this.bardata.data[i],
- });
- }
- }
-
- if (this.lineData.length > 0) {
- option.series.push({
- name: "理论发电量",
- type: "line",
- data: this.lineData,
- smooth: false,
- xAxisIndex: 1,
- lineStyle: {
- color:
- this.themeName === "dark"
- ? partten.getColor("green")
- : partten.getColor("blue"),
- },
- itemStyle: {
- color:
- this.themeName === "dark"
- ? partten.getColor("green")
- : partten.getColor("blue"),
- },
- });
- }
- chart.setOption(option);
- console.log(55555555555555555)
- chart.resize();
- },
- },
- created() {
- this.id = "pie-chart-" + util.newGUID();
- if (this.bardata.area && this.bardata.area.length < this.pageSize) {
- this.areaData = this.bardata.area;
- for (let i = this.bardata.area.length; i <= this.pageSize; i++) {
- this.areaData.push("");
- }
- }
- },
- mounted() {
- this.$nextTick(() => {
- this.$el.style.width = this.width;
- this.$el.style.height = this.height;
- this.initChart();
- });
- },
- updated() {
- this.$nextTick(() => {
- this.initChart();
- });
- },
- beforeUpdate() {
- this.areaData = this.bardata.area;
- },
- beforeUpdate() {
- this.areaData = this.bardata.area;
- },
- activated() {
- this.$nextTick(() => {
- this.$el.style.width = this.width;
- this.$el.style.height = this.height;
- this.initChart();
- });
- },
- computed: {
- collapse() {
- return this.$store.state.collapse;
- },
- legend() {
- return this.bardata.legend;
- },
- end() {
- var result = 20;
- if (this.areaData) {
- result = parseInt((this.pageSize / this.areaData.length) * 100);
- }
- return result;
- },
- },
- watch: {
- collapse(val) {
- if (this.chart) {
- setTimeout(() => {
- this.chart.resize();
- }, 300);
- }
- },
- bardata(val) {
- if (val.area && val.area.length < this.pageSize) {
- this.areaData = val.area;
- for (let i = val.area.length; i <= this.pageSize; i++) {
- this.areaData.push("");
- }
- }
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .chart {
- width: 100%;
- height: 100%;
- display: inline-block;
- }
- </style>
|