kibana-123
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
18 lines (16 loc) • 574 B
HTML
<div ng-controller="KbnTableVisController" class="table-vis">
<div ng-if="!hasSomeRows && hasSomeRows !== null" class="table-vis-error">
<h2 aria-hidden="true"><i aria-hidden="true" class="fa fa-meh-o"></i></h2>
<h4>No results found</h4>
</div>
<div ng-if="tableGroups" class="table-vis-container">
<kbn-agg-table-group
group="tableGroups"
export-title="vis.title"
per-page="vis.params.perPage"
sort="sort"
show-total="vis.params.showTotal"
total-func="vis.params.totalFunc">
</kbn-agg-table-group>
</div>
</div>