123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- <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: "13.889vh",
- },
- // 传入数据
- list: {
- type: Array,
- default: () => [
- {
- title: "日发电量",
- yAxisIndex: 0,
- value: [
- {
- text: "1日",
- value: 1,
- },
- {
- text: "2日",
- value: 1,
- },
- {
- text: "3日",
- value: 1,
- },
- {
- text: "4日",
- value: 1,
- },
- {
- text: "5日",
- value: 1,
- },
- {
- text: "6日",
- value: 1,
- },
- {
- text: "7日",
- value: 1,
- },
- {
- text: "8日",
- value: 1,
- },
- {
- text: "9日",
- value: 1,
- },
- {
- text: "10日",
- value: 1,
- },
- {
- text: "11日",
- value: 1,
- },
- {
- text: "12日",
- value: 1,
- },
- ],
- },
- {
- title: "上网电量",
- yAxisIndex: 0,
- value: [
- {
- text: "1日",
- value: 1,
- },
- {
- text: "2日",
- value: 2,
- },
- {
- text: "3日",
- value: 1,
- },
- {
- text: "4日",
- value: 3,
- },
- {
- text: "5日",
- value: 3,
- },
- {
- text: "6日",
- value: 3,
- },
- {
- text: "7日",
- value: 3,
- },
- ],
- },
- {
- title: "购网电量",
- yAxisIndex: 0,
- value: [
- {
- text: "1日",
- value: 1,
- },
- {
- text: "2日",
- value: 2,
- },
- {
- text: "3日",
- value: 1,
- },
- {
- text: "4日",
- value: 3,
- },
- {
- text: "5日",
- value: 3,
- },
- {
- text: "6日",
- value: 3,
- },
- {
- text: "7日",
- value: 3,
- },
- ],
- },
- {
- title: "风速",
- yAxisIndex: 1,
- value: [
- {
- text: "1日",
- value: 1,
- },
- {
- text: "2日",
- value: 2,
- },
- {
- text: "3日",
- value: 1,
- },
- {
- text: "4日",
- value: 3,
- },
- {
- text: "5日",
- value: 3,
- },
- {
- text: "6日",
- value: 3,
- },
- {
- text: "7日",
- value: 3,
- },
- ],
- },
- ],
- },
- // 单位
- units: {
- type: Array,
- default: () => ["(万KWh)", "(风速)"],
- },
- // 自定义tooltip 显示内容
- customerTooltip: {
- type: Boolean,
- default: true,
- },
- // 颜色
- color: {
- type: Array,
- default: () => ["#05bb4c", "#4b55ae", "#fa8c16", "#f8de5b", "#1a93cf", "#c531c7", "#bd3338"],
- },
- },
- data() {
- return {
- id: "",
- chart: null,
- };
- },
- computed: {
- xdata() {
- let result = [];
- if (this.list && this.list.length > 0 && this.list[0].value.length > 0) {
- result = this.list[0].value.map((t) => {
- return t.text;
- });
- }
- return result;
- },
- ydata() {
- let result = [];
- this.units.forEach((value, index) => {
- let data = null;
- if (index == 0) {
- data = {
- type: "value",
- name: value,
- axisLabel: {
- formatter: "{value} ",
- fontSize: 14,
- },
- //分格线
- splitLine: {
- lineStyle: {
- color: "#5a6162",
- type: "dashed",
- },
- },
- };
- } else {
- data = {
- type: "value",
- name: value,
- axisLabel: {
- formatter: "{value}",
- fontSize: 14,
- },
- //分格线
- splitLine: {
- show: false,
- },
- };
- }
- result.push(data);
- });
- return result;
- },
- series() {
- let result = [];
- if (this.list && this.list.length > 0) {
- this.list.forEach((value, index) => {
- result.push({
- name: value.title,
- type: "bar",
- yAxisIndex: value.yAxisIndex,
- data: value.value.map((t) => {
- return t.value;
- }),
- itemStyle: {
- color: partten.getColor("gray") + 50,
- },
- emphasis: {
- itemStyle: {
- color: this.color[index],
- },
- },
- });
- });
- }
- return result;
- },
- },
- emits: {
- tooltip: function(param, callback) {
- var color = ["#05bb4c", "#4b55ae", "#fa8c16", "#f8de5b"];
- var result = param[0].axisValue;
- param.forEach((value, index) => {
- result += "<br />" + `<span style="display:inline-block;margin-right:4px;border-radius:10px;width:10px;height:10px;background-color:${color[index]};"></span>` + value.seriesName + ":" + value.value;
- });
- callback(result);
- return true;
- },
- },
- methods: {
- initChart() {
- let that = this;
- let chart = echarts.init(this.$el);
- let option = {
- color: this.color,
- tooltip: {
- trigger: "axis",
- backgroundColor: "rgba(0,0,0,0.4)",
- textStyle: {
- color: "#fff",
- fontSize: 14,
- },
- },
- grid: {
- top: util.vh(32),
- left: util.vh(40),
- right: this.ydata.length > 1 ? util.vh(40) : util.vh(16),
- bottom: util.vh(24),
- },
- xAxis: [
- {
- type: "category",
- data: this.xdata,
- axisPointer: {
- type: "shadow",
- },
- axisLabel: {
- fontSize: 14,
- },
- },
- ],
- yAxis: this.ydata,
- series: this.series,
- };
- if (that.customerTooltip) {
- option.tooltip.formatter = function(param) {
- let result = "";
- let callback = function(value) {
- result = value;
- };
- that.$emit("tooltip", param, callback);
- return result;
- };
- }
- chart.setOption(option);
- },
- },
- 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();
- });
- },
- };
- </script>
- <style lang="less">
- .chart {
- width: 100%;
- height: 100%;
- display: inline-block;
- }
- </style>
|