blob: ad3d4412f872a6ab8cdd5cf25e907b02da0363c5 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
<template>
<RkEcharts ref="chart" :option="option" :autoResize="true"/>
</template>
<script lang="ts">
import { Vue, Component, Prop } from 'vue-property-decorator';
@Component
export default class ChartBar extends Vue {
@Prop() private data!: any;
@Prop() private intervalTime!: any;
public resize() {
const chart: any = this.$refs.chart;
chart.myChart.resize();
}
get option() {
const temp: any = [];
const keys = Object.keys(this.data || {});
keys.forEach((i: any, index: number) => {
temp.push({
data: this.data[i].map((item: any, itemIndex: number) => [
this.intervalTime[itemIndex],
item,
]),
name: i,
type: 'bar',
symbol: 'none',
barMaxWidth: 10,
stack: '总量',
lineStyle: {
width: 1.5,
type: 'dotted',
},
});
});
return {
color: [
'#3f96e3',
'#3f96e3',
'#3fa9e1',
'#3fbcde',
'#3fcfdc',
'#3fe1da',
],
tooltip: {
trigger: 'axis',
backgroundColor: 'rgb(50,50,50)',
textStyle: {
fontSize: 13,
},
},
legend: {
show: keys.length === 1 ? false : true,
icon: 'circle',
top: 0,
left: 0,
itemWidth: 12,
},
grid: {
top: keys.length === 1 ? 15 : 40,
left: 0,
right: 10,
bottom: 5,
containLabel: true,
},
xAxis: {
type: 'category',
axisTick: {
lineStyle: { color: '#c1c5ca41' },
alignWithLabel: true,
},
splitLine: { show: false },
axisLine: { lineStyle: { color: 'rgba(0,0,0,0)' } },
axisLabel: { color: '#9da5b2', fontSize: '11' },
},
yAxis: {
type: 'value',
axisLine: { show: false },
axisTick: { show: false },
splitLine: { lineStyle: { color: '#c1c5ca41', type: 'dashed' } },
axisLabel: { color: '#9da5b2', fontSize: '11' },
},
series: temp,
};
}
}
</script>