Skip to content

Commit 3ab29b2

Browse files
author
tineshsf4652
authored
Update README.md
1 parent 1001c1f commit 3ab29b2

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ private void Entry_TextChanged(object sender, TextChangedEventArgs e)
162162
}
163163
```
164164

165-
**Step 5:** This XAML code defines a grid layout with a [SfCartesianChart](https://help.syncfusion.com/maui/cartesian-charts/getting-started) for displaying revenue data and a vertical control panel for adjusting a dynamic target line. The chart includes a horizontal annotation line bound to Y1, adjustable via an Entry and a Slider in the adjacent VerticalStackLayout.
165+
**Step 5:** This XAML code demonstrates a [SfCartesianChart](https://help.syncfusion.com/maui/cartesian-charts/getting-started) with dynamic updates to a horizontal target line annotation, bound to a ViewModel property. The chart includes X and Y axes, a column series, and customizable annotation styling.
166166

167167
**XAML**
168168

@@ -210,12 +210,6 @@ private void Entry_TextChanged(object sender, TextChangedEventArgs e)
210210
Opacity="0.7"/>
211211

212212
</chart:SfCartesianChart>
213-
214-
<VerticalStackLayout Spacing="5" Grid.Column="1" Padding="10">
215-
<Label Text="Adjust Target Line" FontSize="16" FontAttributes="Bold" HorizontalOptions="Center"/>
216-
<Entry Text="{Binding Y1}" Keyboard="Numeric" TextChanged="Entry_TextChanged"/>
217-
<Slider Minimum="{Binding Minimum, Source={x:Reference Y_Axis}}" Maximum="{Binding Maximum, Source={x:Reference Y_Axis}}" Value="{Binding Y1}"/>
218-
</VerticalStackLayout>
219213
</Grid>
220214
```
221215

0 commit comments

Comments
 (0)