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 containLabel: true
}, },
xAxis: [{ xAxis: [{
type: 'value',
axisTick: {
show: false
}
}],
yAxis: [{
type: 'category', type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
axisTick: { axisTick: {
alignWithLabel: true alignWithLabel: true
} }
}], }],
yAxis: [{
type: 'value',
axisTick: {
show: false
}
}],
series: [{ series: [{
name: 'pageA', name: 'pageA',
type: 'bar', type: 'bar',

View File

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