5f9a0fd08083cc97f8dd1ae68cb5463cd562f38b
[portal/sdk.git] /
1 import { Component, OnInit, Input } from '@angular/core';
2
3 @Component({
4   selector: 'app-chart-wizard',
5   templateUrl: './chart-wizard.component.html',
6   styleUrls: ['./chart-wizard.component.css']
7 })
8 export class ChartWizardComponent implements OnInit {
9
10   @Input("reportId") reportId1 : string;
11
12   constructor() { }
13
14   ngOnInit() {
15   }
16
17 }