| 123456789101112131415161718192021222324 |
- <div class="table-panel-wrapper">
- <grafana-panel>
- <div class="table-panel-container">
- <div class="table-panel-header-bg"></div>
- <div class="table-panel-scroll">
- <table class="table-panel-table">
- <thead>
- <tr>
- <th ng-repeat="col in table.columns">
- <div class="table-panel-table-header-inner">
- {{col.text}}
- </div>
- </th>
- </tr>
- </thead>
- <tbody>
- </tbody>
- </table>
- </div>
- </div>
- <div class="table-panel-footer">
- </div>
- </grafana-panel>
- </div>
|