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 { defaultTheme, chartColorsSearch } from '@/settings/chartThemes/index'
import dataJson from './data.json'
export const includes = ['legend', 'xAxis', 'yAxis']
export const includes = ['legend', 'xAxis', 'yAxis', 'grid']
export const option = {
tooltip: {
@@ -17,6 +17,13 @@ export const option = {
legend: {
show: true
},
grid: {
show: false,
left: '10%',
top: '60',
right: '10%',
bottom: '60'
},
xAxis: {
show: true,
type: 'category'
@@ -29,7 +36,7 @@ export const option = {
series: [
{
type: 'line',
symbolSize: 5, //设定实心点的大小
symbolSize: 5, //设定实心点的大小
lineStyle: {
type: 'solid',
width: 3,