From 035cb3c4a80c9908b62ff3c7a7dd1bd3180d6900 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Thu, 18 Jan 2024 17:48:31 +0200 Subject: [PATCH] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.18.1 --- .../category-chart/data-aggregations/src/app.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/charts/category-chart/data-aggregations/src/app.component.ts b/samples/charts/category-chart/data-aggregations/src/app.component.ts index 683af4877..a4e8c9aa3 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.component.ts @@ -62,19 +62,19 @@ export class AppComponent implements AfterViewInit public editorChangeUpdateInitialGroups({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { var intialGroupVal = args.newValue.toString(); - chart.initialGroups = intialGroupVal; + this.chart.initialGroups = intialGroupVal; } public editorChangeUpdateInitialSummaries({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { var intialSummaryVal = args.newValue.toString(); - chart.initialSummaries = intialSummaryVal; + this.chart.initialSummaries = intialSummaryVal; } public editorChangeUpdateGroupSorts({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { var groupSortsVal = args.newValue.toString(); - chart.groupSorts = groupSortsVal; + this.chart.groupSorts = groupSortsVal; } }