- chart grid height 80% to 75%

This commit is contained in:
peterlu14
2023-02-03 18:27:12 +08:00
parent c94d4360e6
commit d2ccfc63a4
2 changed files with 2 additions and 5 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ class Grid {
constructor(index: number, length: number) {
this.id = undefined
this.show = true
this.height = 80 + '%'
this.top = index * (80 / length) + 5 + '%'
this.height = 75 + '%'
this.top = index * (75 / length) + 10 + '%'
this.left = '10%'
this.right = '10%'
}
-3
View File
@@ -1,8 +1,5 @@
// import { Legend, LegendOption } from './legend'
// import { Tooltip } from './tooltip'
// import { GridManager } from './Grid/gridManager'
// import { xAxis, xAxisOption } from './xAxis'
// import { yAxis, yAxisOption } from './yAxis'
// import { DataZoom } from './dataZoom'
import { GridManager } from './grid/gridManager'
import { SeriesManager } from './series/seriesManager'