mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 11:01:37 -05:00
Make sure chart viewer height gets set correctly (#2143)
This commit is contained in:
@@ -22,3 +22,8 @@
|
|||||||
.editDataEditor {
|
.editDataEditor {
|
||||||
height: inherit
|
height: inherit
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#chartViewerDiv .chartViewer {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
<tab *ngIf="showChartView" [visibilityType]="'visibility'" [title]="chartViewerTitle" [identifier]="chartViewerTabIdentifier">
|
<tab *ngIf="showChartView" [visibilityType]="'visibility'" [title]="chartViewerTitle" [identifier]="chartViewerTabIdentifier">
|
||||||
<ng-template>
|
<ng-template>
|
||||||
<div id="chartViewerDiv" class="headersVisible fullsize" >
|
<div id="chartViewerDiv" class="headersVisible fullsize" >
|
||||||
<chart-viewer [dataSet]="activeDataSet" class="fullsize" style="display: block">
|
<chart-viewer [dataSet]="activeDataSet" class="fullsize chartViewer">
|
||||||
</chart-viewer>
|
</chart-viewer>
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
|||||||
Reference in New Issue
Block a user