From 041673a74fc13bf15d561b0e44d0c710052af425 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Thu, 27 Feb 2025 00:41:49 +0200 Subject: [PATCH] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.26.2 --- .../data-chart/selection-matcher/src/app.component.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/samples/charts/data-chart/selection-matcher/src/app.component.ts b/samples/charts/data-chart/selection-matcher/src/app.component.ts index e161bc447..f702f91a6 100644 --- a/samples/charts/data-chart/selection-matcher/src/app.component.ts +++ b/samples/charts/data-chart/selection-matcher/src/app.component.ts @@ -69,11 +69,12 @@ export class AppComponent implements AfterViewInit selection.matcher = matcher; chart.selectedSeriesItems.add(selection); + let matcher2: IgxSeriesMatcher = new IgxSeriesMatcher(); let selection2: IgxChartSelection = new IgxChartSelection(); selection2.item = data[2]; - matcher.memberPath = "wind"; - matcher.memberPathType = "ValueMemberPath"; - selection2.matcher = matcher; + matcher2.memberPath = "wind"; + matcher2.memberPathType = "ValueMemberPath"; + selection2.matcher = matcher2; chart.selectedSeriesItems.add(selection2);