mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
12 lines
723 B
HTML
12 lines
723 B
HTML
<kibana-panel ng-controller='pie' ng-init="init()">
|
|
<span ng-show='panel.spyable' style="position:absolute;right:0px;top:0px" class='panelextra pointer'>
|
|
<i bs-modal="'partials/modal.html'" class="icon-eye-open"></i>
|
|
</span>
|
|
|
|
<div ng-repeat="query in plot.getData()" style="float:left;padding-left: 10px;">
|
|
<span ng-show='panel.chart != "none"'><div style="display:inline-block;border-radius:5px;background:{{query.color}};height:10px;width:10px"></div></span><span class="small"> {{query.label}} ({{query.data[0][1]}}) </span></span>
|
|
</div><br>
|
|
<div style="clear:both"></div>
|
|
|
|
<div pie params="{{panel}}" style="height:{{panel.height || row.height}};position:relative"></div>
|
|
</kibana-panel> |