feat: 柱状图折线图添加网格配置

This commit is contained in:
蒋承
2022-10-14 16:46:41 +08:00
parent d835a904c9
commit 2a6e5915f5
8 changed files with 92 additions and 20 deletions
@@ -4,7 +4,7 @@ import { CreateComponentType } from '@/packages/index.d'
import cloneDeep from 'lodash/cloneDeep'
import dataJson from './data.json'
export const includes = ['legend', 'xAxis', 'yAxis']
export const includes = ['legend', 'xAxis', 'yAxis', 'grid']
export const seriesItem = {
type: 'bar',
barWidth: null,
@@ -31,6 +31,13 @@ export const option = {
legend: {
show: true
},
grid: {
show: false,
left: '10%',
top: '60',
right: '10%',
bottom: '60'
},
xAxis: {
show: true,
type: 'value'