Skip to content

Commit 6462776

Browse files
Updated alignment changes.
1 parent 9a762e9 commit 6462776

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

maui/src/Charts/SfCartesianChart.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1959,22 +1959,22 @@ void ScheduleUpdateChart()
19591959

19601960
void ResetAnnotation()
19611961
{
1962-
int i = _annotationLayout.Children.Count - 1;
1962+
int i = _annotationLayout.Children.Count - 1;
19631963

1964-
if (i < 0)
1965-
{
1966-
return;
1967-
}
1964+
if (i < 0)
1965+
{
1966+
return;
1967+
}
19681968

1969-
do
1970-
{
1971-
if (_annotationLayout.Children[i] is not AnnotationDrawableView view)
1972-
{
1973-
_annotationLayout.Children.RemoveAt(i);
1974-
}
1969+
do
1970+
{
1971+
if (_annotationLayout.Children[i] is not AnnotationDrawableView view)
1972+
{
1973+
_annotationLayout.Children.RemoveAt(i);
1974+
}
19751975

1976-
i--;
1977-
} while (i >= 0);
1976+
i--;
1977+
} while (i >= 0);
19781978
}
19791979

19801980
void RemoveAnnotation(int index, object item)

0 commit comments

Comments
 (0)