diff --git a/apps/client/src/app/components/investment-chart/investment-chart.component.ts b/apps/client/src/app/components/investment-chart/investment-chart.component.ts index 6b269d708..d9fc1930a 100644 --- a/apps/client/src/app/components/investment-chart/investment-chart.component.ts +++ b/apps/client/src/app/components/investment-chart/investment-chart.component.ts @@ -55,20 +55,20 @@ import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; templateUrl: './investment-chart.component.html' }) export class GfInvestmentChartComponent implements OnChanges, OnDestroy { - @Input() benchmarkDataItems: InvestmentItem[] = []; - @Input() benchmarkDataLabel = ''; - @Input() colorScheme: ColorScheme; - @Input() currency: string; - @Input() groupBy: GroupBy; - @Input() historicalDataItems: LineChartItem[] = []; - @Input() isInPercentage = false; - @Input() isLoading = false; - @Input() locale = getLocale(); - @Input() savingsRate = 0; + @Input() public benchmarkDataItems: InvestmentItem[] = []; + @Input() public benchmarkDataLabel = ''; + @Input() public colorScheme: ColorScheme; + @Input() public currency: string; + @Input() public groupBy: GroupBy; + @Input() public historicalDataItems: LineChartItem[] = []; + @Input() public isInPercentage = false; + @Input() public isLoading = false; + @Input() public locale = getLocale(); + @Input() public savingsRate = 0; - @ViewChild('chartCanvas') chartCanvas: ElementRef; + @ViewChild('chartCanvas') private chartCanvas: ElementRef; - public chart: Chart<'bar' | 'line'>; + private chart: Chart<'bar' | 'line'>; private investments: InvestmentItem[]; private values: LineChartItem[];