mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 02:02:35 -05:00
41 lines
1.8 KiB
HTML
41 lines
1.8 KiB
HTML
<!--
|
|
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
-->
|
|
|
|
<panel class="fullsize" [options]="panelOpt">
|
|
<tab [visibilityType]="'visibility'" [title]="queryComponentTitle" class="fullsize" [identifier]="resultsTabIdentifier">
|
|
<ng-template>
|
|
<div id="queryDiv" class="fullsize">
|
|
<query-component id="queryComp" class="fullsize" [queryParameters]="queryParameters"></query-component>
|
|
</div>
|
|
</ng-template>
|
|
</tab>
|
|
|
|
<tab *ngIf="hasQueryPlan" [visibilityType]="'visibility'" [title]="queryPlanTitle" [identifier]="queryPlanTabIdentifier">
|
|
<ng-template>
|
|
<div id="queryPlanDiv" class="headersVisible fullsize" style=" overflow: auto; margin-left: 2px">
|
|
<queryplan-component class="fullsize" style="display: block"></queryplan-component>
|
|
</div>
|
|
</ng-template>
|
|
</tab>
|
|
|
|
<tab *ngIf="hasQueryPlan" [visibilityType]="'visibility'" class="fullsize" [title]="topOperationsTitle" [identifier]="topOperationsTabIdentifier">
|
|
<ng-template>
|
|
<div id="topOperationsDiv" class="fullsize">
|
|
<top-operations-component class="fullsize" style="display: block" [queryParameters]="queryParameters"></top-operations-component>
|
|
</div>
|
|
</ng-template>
|
|
</tab>
|
|
|
|
<tab *ngIf="showChartView" [visibilityType]="'visibility'" [title]="chartViewerTitle" [identifier]="chartViewerTabIdentifier">
|
|
<ng-template>
|
|
<div id="chartViewerDiv" class="headersVisible fullsize" >
|
|
<chart-viewer [dataSet]="activeDataSet" class="fullsize chartViewer">
|
|
</chart-viewer>
|
|
</div>
|
|
</ng-template>
|
|
</tab>
|
|
</panel> |