summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/fcaps/monitor-management-service/monitor-facps-service/monitor-facps-service.component.html
blob: a07f948cb393dd57131224c6aad13702424d57fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<div class="main">
  <div class="divCls">
    <table>
      <tr>
        <td>
            <nz-form-label class= "colm-s-1 lblCls" [nzSm]="6" [nzXs]="24" nzRequired nzFor="capacity">FinishedInstance</nz-form-label>
        </td>
        <td>
          <nz-select
            id="subscriptionType"
            class= "colm-s-2"
            [(ngModel)]="instanceId"
            (ngModelChange)="queryInstancePerformance($event)"
            nzAllowClear
          >
            <nz-option
              *ngFor="let option of instanceLists"
              [nzValue]="option.instanceId"
              [nzLabel]="option.name"
            ></nz-option>
          </nz-select>
        </td>
      </tr>
    </table>
  </div>
  <div class="flexDiv">
    <div class="topocontainer">
      <div
        id="chartLine"
        echarts 
        [initOpts]="initOpts"
        [options]="lineOption" 
        [merge]="updateOption"
        (chartInit)="chartInit($event)">
          Line Chart
      </div>
    </div>
  </div>
</div>