We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 701525a commit f351f4dCopy full SHA for f351f4d
maui/src/Charts/SfCartesianChart.cs
@@ -1345,8 +1345,12 @@ internal void UpdateView()
1345
{
1346
if (!_chartArea.Contains(_trackballView))
1347
1348
- var _index = _chartArea.IndexOf(BehaviorLayout);
1349
- _chartArea.Insert(_index, _trackballView);
+ _chartArea.Add(_trackballView);
+
1350
+ if (BehaviorLayout != null)
1351
+ {
1352
+ BehaviorLayout.ZIndex = _chartArea.Count;
1353
+ }
1354
}
1355
1356
if (!_chartArea.Contains(_zoomPanView))
0 commit comments