We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58a6ba3 commit 8689ff8Copy full SHA for 8689ff8
samples/charts/data-chart/selection-matcher/src/index.ts
@@ -83,11 +83,12 @@ export class Sample {
83
selection.matcher = matcher;
84
chart.selectedSeriesItems.add(selection);
85
86
+ let matcher2: IgcSeriesMatcher = new IgcSeriesMatcher();
87
let selection2: IgcChartSelection = new IgcChartSelection();
88
selection2.item = data[2];
- matcher.memberPath = "wind";
89
- matcher.memberPathType = "ValueMemberPath";
90
- selection2.matcher = matcher;
+ matcher2.memberPath = "wind";
+ matcher2.memberPathType = "ValueMemberPath";
91
+ selection2.matcher = matcher2;
92
93
chart.selectedSeriesItems.add(selection2);
94
0 commit comments