module.html 742 B

123456789101112
  1. <kibana-panel ng-controller='pie' ng-init="init()">
  2. <span ng-show='panel.spyable' style="position:absolute;right:0px;top:0px" class='panelextra pointer'>
  3. <i bs-modal="'partials/modal.html'" class="icon-eye-open"></i>
  4. </span>
  5. <span ng-show="panel.legend" ng-repeat='series in legend' style='padding-right:5px'>
  6. <div style='white-space:nowrap;display:table-cell'>
  7. <div style="display:inline-block;background:{{series.color}};height:10px;width:10px;border-radius:5px;"></div>
  8. <div class='small' style='display:inline-block'>{{series.label}} ({{series.percent}}%)</div>
  9. </div>
  10. </span>
  11. <div pie params="{{panel}}" style="height:{{panel.height || row.height}};position:relative"></div>
  12. </kibana-panel>