The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/plugins/panel/table-old/module.html

25 lines
1016 B

<div class="table-panel-container">
<div class="table-panel-header-bg" ng-show="ctrl.table.rows.length"></div>
<div class="table-panel-scroll" ng-show="ctrl.table.rows.length">
<table class="table-panel-table">
<thead>
<tr>
<th ng-repeat="col in ctrl.table.columns" ng-if="!col.hidden">
<div class="table-panel-table-header-inner pointer" ng-click="ctrl.toggleColumnSort(col, $index)">
{{col.title}}
<span class="table-panel-table-header-controls" ng-if="col.sort">
<icon name="'angle-down'" ng-show="col.desc"></icon>
<icon name="'angle-up'" ng-hide="col.desc"></icon>
</span>
</div>
</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<div class="datapoints-warning" ng-show="ctrl.table.rows.length===0">
<span class="small"> No data to show <tip>Nothing returned by data query</tip> </span>
</div>
<div class="table-panel-footer"></div>