module.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <div ng-controller='GraphCtrl'>
  2. <div class="graph-wrapper" ng-class="{'graph-legend-rightside': panel.legend.rightSide}">
  3. <div class="graph-canvas-wrapper">
  4. <div ng-if="datapointsWarning" class="datapoints-warning">
  5. <span class="small" ng-show="!datapointsCount">No datapoints <tip>Can be caused by timezone mismatch between browser and graphite server</tip></span>
  6. <span class="small" ng-show="datapointsOutside">Datapoints outside time range <tip>Can be caused by timezone mismatch between browser and graphite server</tip></span>
  7. </div>
  8. <div grafana-graph class="pointer histogram-chart">
  9. </div>
  10. </div>
  11. <div class="graph-legend-wrapper"
  12. ng-if="panel.legend.show"
  13. ng-include="'app/panels/graph/legend.html'">
  14. </div>
  15. </div>
  16. <div class="clearfix"></div>
  17. <div class="panel-full-edit-tabs" ng-if="editMode">
  18. <div ng-model="editor.index" bs-tabs>
  19. <div ng-repeat="tab in editorTabs" data-title="{{tab}}">
  20. </div>
  21. </div>
  22. <div class="tab-content" ng-repeat="tab in panelMeta.fullEditorTabs" ng-show="editorTabs[editor.index] == tab.title">
  23. <div ng-include src="tab.src"></div>
  24. </div>
  25. </div>
  26. </div>