Skip to content

Commit 8689ff8

Browse files
azure-pipelines[bot]tfsbuildmddifilippo89
authored
Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.26.2 (#949)
Co-authored-by: tfsbuild <tfsbuild@infragistics.com> Co-authored-by: mddifilippo89 <mdifilippo@infragistics.com>
1 parent 58a6ba3 commit 8689ff8

File tree

1 file changed

+4
-3
lines changed
  • samples/charts/data-chart/selection-matcher/src

1 file changed

+4
-3
lines changed

samples/charts/data-chart/selection-matcher/src/index.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,12 @@ export class Sample {
8383
selection.matcher = matcher;
8484
chart.selectedSeriesItems.add(selection);
8585

86+
let matcher2: IgcSeriesMatcher = new IgcSeriesMatcher();
8687
let selection2: IgcChartSelection = new IgcChartSelection();
8788
selection2.item = data[2];
88-
matcher.memberPath = "wind";
89-
matcher.memberPathType = "ValueMemberPath";
90-
selection2.matcher = matcher;
89+
matcher2.memberPath = "wind";
90+
matcher2.memberPathType = "ValueMemberPath";
91+
selection2.matcher = matcher2;
9192

9293
chart.selectedSeriesItems.add(selection2);
9394

0 commit comments

Comments
 (0)