panel_ctrl.ts 373 B

123456789101112131415161718192021
  1. ///<reference path="../../headers/common.d.ts" />
  2. import PanelMeta from './panel_meta2';
  3. export class PanelCtrl {
  4. panelMeta: any;
  5. panel: any;
  6. row: any;
  7. dashboard: any;
  8. constructor(private $scope) {
  9. this.panelMeta = new PanelMeta({
  10. panelName: 'Table',
  11. editIcon: "fa fa-table",
  12. fullscreen: true,
  13. metricsEditor: true,
  14. });
  15. }
  16. }