Make sure chart viewer height gets set correctly (#2143)

This commit is contained in:
Matt Irvine
2018-08-03 16:17:49 -07:00
committed by GitHub
parent 79269cdfd5
commit df804d0729
2 changed files with 6 additions and 1 deletions

View File

@@ -21,4 +21,9 @@
.editDataEditor {
height: inherit
}
#chartViewerDiv .chartViewer {
display: flex;
flex-direction: column;
}

View File

@@ -33,7 +33,7 @@
<tab *ngIf="showChartView" [visibilityType]="'visibility'" [title]="chartViewerTitle" [identifier]="chartViewerTabIdentifier">
<ng-template>
<div id="chartViewerDiv" class="headersVisible fullsize" >
<chart-viewer [dataSet]="activeDataSet" class="fullsize" style="display: block">
<chart-viewer [dataSet]="activeDataSet" class="fullsize chartViewer">
</chart-viewer>
</div>
</ng-template>