template.ts 671 B

123456789101112131415161718192021
  1. const template = `
  2. <div class="graph-panel" ng-class="{'graph-panel--legend-right': ctrl.panel.legend.rightSide}">
  3. <div class="graph-panel__chart" grafana-graph ng-dblclick="ctrl.zoomOut()">
  4. </div>
  5. <div class="graph-legend">
  6. <div class="graph-legend-content" graph-legend></div>
  7. </div>
  8. <div ng-if="ctrl.contextMenuCtrl.isVisible">
  9. <graph-context-menu
  10. items="ctrl.contextMenuCtrl.menuItems"
  11. onClose="ctrl.onContextMenuClose"
  12. getContextMenuSource="ctrl.contextMenuCtrl.getSource"
  13. x="ctrl.contextMenuCtrl.position.x"
  14. y="ctrl.contextMenuCtrl.position.y"
  15. ></graph-context-menu>
  16. </div>
  17. </div>
  18. `;
  19. export default template;