1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00

modify chart

This commit is contained in:
unknown 2023-03-12 19:47:03 +08:00
parent caf7d3f44e
commit ca8035fa98
2 changed files with 12 additions and 10 deletions

View File

@ -61,18 +61,18 @@ export default {
containLabel: true
},
xAxis: [{
type: 'value',
axisTick: {
show: false
}
}],
yAxis: [{
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
axisTick: {
alignWithLabel: true
}
}],
yAxis: [{
type: 'value',
axisTick: {
show: false
}
}],
series: [{
name: 'pageA',
type: 'bar',

View File

@ -9,17 +9,19 @@
</el-row>
<el-row :gutter="32">
<el-col :xs="24" :sm="24" :lg="8">
<el-col :span="8">
<div class="chart-wrapper">
<raddar-chart />
</div>
</el-col>
<!--
<el-col :xs="24" :sm="24" :lg="8">
<div class="chart-wrapper">
<pie-chart />
</div>
</el-col>
<el-col :xs="24" :sm="24" :lg="8">
-->
<el-col :span="16">
<div class="chart-wrapper">
<bar-chart />
</div>
@ -45,7 +47,7 @@
import PanelGroup from './components/PanelGroup'
import LineChart from './components/LineChart'
import RaddarChart from './components/RaddarChart'
import PieChart from './components/PieChart'
// import PieChart from './components/PieChart'
import BarChart from './components/BarChart'
import TransactionTable from './components/TransactionTable'
import TodoList from './components/TodoList'
@ -77,7 +79,7 @@ export default {
PanelGroup,
LineChart,
RaddarChart,
PieChart,
// PieChart,
BarChart,
TransactionTable,
TodoList,