diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2019-03-21 19:51:39 +0800 |
---|---|---|
committer | guochuyicmri <guochuyi@chinamobile.com> | 2019-03-21 19:51:47 +0800 |
commit | 8ca667af29ce93f5b801ccfafbf6d14e55640300 (patch) | |
tree | c0eb59d8ffe4862a17b6fe641c21b0a4b05f3b25 /usecaseui-portal/src/app/components/charts/line/line.component.ts | |
parent | c3e53185d6f653727cee2144804aa5404dea6f5a (diff) |
Dashboard Interface Function Modification
Change-Id: Ia3ebdfaa0dd3acde1e626ed500341e0d4ae72142
Issue-ID: USECASEUI-214
Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/components/charts/line/line.component.ts')
-rw-r--r-- | usecaseui-portal/src/app/components/charts/line/line.component.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usecaseui-portal/src/app/components/charts/line/line.component.ts b/usecaseui-portal/src/app/components/charts/line/line.component.ts index 6c4279cb..55b757ce 100644 --- a/usecaseui-portal/src/app/components/charts/line/line.component.ts +++ b/usecaseui-portal/src/app/components/charts/line/line.component.ts @@ -26,10 +26,10 @@ export class LineComponent implements OnInit { legend: this.initData.option.legend, dataZoom: this.initData.option.dataZoom, grid: { - left: '1%', + left: '0%', right: '3%', top: '10%', - bottom: '10%', + bottom: '18%', containLabel: true }, xAxis: { @@ -65,7 +65,6 @@ export class LineComponent implements OnInit { } ngOnChanges(changes:SimpleChanges){ - // 当有实例的时候再执行,相当于第一次不执行下面方法 if(this.chartIntance){ this.chartDataChange() |