| 123456789101112131415161718192021222324252627 |
- ///<reference path="../../../headers/common.d.ts" />
- export class HeatmapDisplayEditorCtrl {
- panel: any;
- panelCtrl: any;
- /** @ngInject */
- constructor($scope) {
- $scope.editor = this;
- this.panelCtrl = $scope.ctrl;
- this.panel = this.panelCtrl.panel;
- this.panelCtrl.render();
- }
- }
- /** @ngInject */
- export function heatmapDisplayEditor() {
- "use strict";
- return {
- restrict: "E",
- scope: true,
- templateUrl:
- "public/app/plugins/panel/heatmap/partials/display_editor.html",
- controller: HeatmapDisplayEditorCtrl
- };
- }
|