From 1c011673cfde6fef0eead2d0393fe4f1baf242f7 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Tue, 23 Jan 2024 21:44:42 +0200 Subject: [PATCH] Adding changes from build igniteui-xplat-examples-output+PRs_2024.1.23.2 --- .../category-chart/data-aggregations/src/app.component.ts | 4 +--- 1 file changed, 1 insertion(+), 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 e2e02748c..058bbe74e 100644 --- a/samples/charts/category-chart/data-aggregations/src/app.component.ts +++ b/samples/charts/category-chart/data-aggregations/src/app.component.ts @@ -92,10 +92,8 @@ export class AppComponent implements AfterViewInit } public editorChangeUpdateInitialGroups({ sender, args }: { sender: any, args: IgxPropertyEditorPropertyDescriptionChangedEventArgs }): void { - var chart = this.chart; - var intialGroupVal = args.newValue.toString(); - chart.initialGroups = intialGroupVal; + chart.initialGroups = args.newValue.toString(); } }