| 1234567891011121314151617181920212223242526 |
- ///<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,
- };
- }
|