You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.2 KiB

<template>
<div class="leftBottom">
<dv-border-box-13>
<dv-charts :option="option"></dv-charts>
</dv-border-box-13>
</div>
</template>
<script>
export default {
data() {
return {
option: {
grid: {
left: '18%',
},
xAxis: {
type: 'category',
data: ['3月', '4月', '5月', '6月', '7月', '8月'],
axisLabel: {
style: {
stroke: '#fff',
fontSize: 14,
},
},
},
yAxis: {
type: 'value',
data: 'value',
max: 100,
min: 0,
axisLabel: {
formatter: '{value}%',
style: {
stroke: '#fff',
fontSize: 14,
},
},
},
series: [
{
type: 'line',
data: [92, 89, 96, 98, 95, 95],
label: {
show: true,
position: 'top',
formatter: '{value}%',
style: {
stroke: '#fff',
fontSize: 14,
},
},
},
],
},
};
},
};
</script>
<style lang="scss" scoped>
.leftBottom {
height: 39%;
}
</style>