diff --git a/MAUI/Autocomplete/UI-Customization.md b/MAUI/Autocomplete/UI-Customization.md index bf1a5eadb4..eff0a0a924 100644 --- a/MAUI/Autocomplete/UI-Customization.md +++ b/MAUI/Autocomplete/UI-Customization.md @@ -480,6 +480,38 @@ SfAutocomplete autocomplete = new SfAutocomplete() ![.NET MAUI Autocomplete Selected DropDown Item Background](Images/UICustomization/SelectedDropDownItemBackground.png) +### Customize the Selected DropDown Item Text Style + +The [SelectedDropDownItemTextStyle]() property in the SfAutoComplete control allows developers to customize the appearance of the selected item in the dropdown list. This feature is useful for highlighting user selections and improving the overall UI experience. + +{% tabs %} +{% highlight xaml %} + + + + + + + +{% endhighlight %} +{% highlight C# %} + +SfAutocomplete autoComplete = new SfAutocomplete +{ + ItemsSource = socialMediaViewModel.SocialMedias, + DisplayMemberPath = "Name", + TextMemberPath = "Name", + SelectedDropDownItemTextStyle = new DropDownTextStyle + { + TextColor = Colors.Orange, + FontSize = 16, + FontAttributes = FontAttributes.Bold + } +}; + +{% endhighlight %} +{% endtabs %} + ### Customize the DropDown Border Color The [DropDownStroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase.html#Syncfusion_Maui_Inputs_DropDownControls_DropDownListBase_DropDownStroke) property is used to modify the border color of the dropdown. diff --git a/MAUI/Cartesian-Charts/Axis/Axis_Images/maui_dateTimeCategory_axis.png b/MAUI/Cartesian-Charts/Axis/Axis_Images/maui_dateTimeCategory_axis.png new file mode 100644 index 0000000000..db4e314c3d Binary files /dev/null and b/MAUI/Cartesian-Charts/Axis/Axis_Images/maui_dateTimeCategory_axis.png differ diff --git a/MAUI/Cartesian-Charts/Axis/Axis_Images/maui_dateTimeCategory_interval.png b/MAUI/Cartesian-Charts/Axis/Axis_Images/maui_dateTimeCategory_interval.png new file mode 100644 index 0000000000..ffeef6bd96 Binary files /dev/null and b/MAUI/Cartesian-Charts/Axis/Axis_Images/maui_dateTimeCategory_interval.png differ diff --git a/MAUI/Cartesian-Charts/Axis/Types.md b/MAUI/Cartesian-Charts/Axis/Types.md index be0ee5e3dd..a9509ef1f5 100644 --- a/MAUI/Cartesian-Charts/Axis/Types.md +++ b/MAUI/Cartesian-Charts/Axis/Types.md @@ -1,6 +1,6 @@ --- layout: post -title: Axis types in .NET MAUI Chart control | Syncfusion +title: Axis types in .NET MAUI Cartesian Chart control | Syncfusion description: Learn here all about axis types and its features in Syncfusion® .NET MAUI Chart (SfCartesianChart) control and more. platform: maui control: SfCartesianChart @@ -8,13 +8,14 @@ documentation: ug keywords: .net maui cartesian charts, .net maui axis types, cartesian chart axis types, syncfusion cartesian charts maui, maui chart axis customization, .net maui chart axis, cartesian chart axis guide maui, .net maui sfCartesianChart axis. --- -# Types of Axis in .NET MAUI Chart +# Types of Axis in .NET MAUI Cartesian Chart Cartesian chart supports the following types of chart axis. * NumericalAxis * CategoryAxis * DateTimeAxis +* DateTimeCategoryAxis * LogarithmicAxis ## Numerical Axis @@ -417,6 +418,78 @@ this.Content = chart; ![DateTimeAxis range customization support in MAUI Chart](Axis_Images/maui_chart_datetime_axis_range.jpg) +## DateTimeCategoryAxis + +The `DateTimeCategoryAxis` is a specialized type of axis primarily used with financial series. Similar to the [CategoryAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.CategoryAxis.html), all data points are plotted with equal spacing, eliminating gaps for missing dates. The intervals and ranges for this axis are calculated similarly to the [DateTimeAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeAxis.html). There are no visual gaps between points, even if the difference between two points exceeds a year. + +{% tabs %} + +{% highlight xaml %} + + + . . . + + + + . . . + + +{% endhighlight %} + +{% highlight c# %} + +SfCartesianChart chart = new SfCartesianChart(); +. . . +// Create an instance of the DateTimeCategoryAxis, used for displaying DateTime values as categories +DateTimeCategoryAxis primaryAxis = new DateTimeCategoryAxis(); +// Add the DateTimeCategoryAxis instance to the chart's XAxes collection +chart.XAxes.Add(primaryAxis); + +this.Content = chart; + +{% endhighlight %} + +{% endtabs %} + +![DateTimeCategory Axis support in MAUI Chart](Axis_Images/maui_dateTimeCategory_axis.png) + +### Interval + +In `DateTimeCategoryAxis`, intervals can be customized by using the Interval and IntervalType properties, similar to [DateTimeAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeAxis.html). For example, setting `Interval` as 5 and `IntervalType` as `Days` will consider 5 days as an interval. +{% tabs %} + +{% highlight xaml %} + + + . . . + + + + . . . + + +{% endhighlight %} + +{% highlight c# %} + +SfCartesianChart chart = new SfCartesianChart(); +. . . +DateTimeCategoryAxis primaryAxis = new DateTimeCategoryAxis() +{ + Interval = 5, + IntervalType = DateTimeIntervalType.Days +}; +chart.XAxes.Add(primaryAxis); +. . . +this.Content = chart; + +{% endhighlight %} + +{% endtabs %} + +![DateTimeCategoryAxis interval support in MAUI Chart](Axis_Images/maui_dateTimeCategory_interval.png) + ## Logarithmic Axis The [LogarithmicAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.LogarithmicAxis.html) uses a logarithmic scale, and it is very useful in visualizing data when the given data range has a big difference. It can be used either on the x-axis or the chart's y-axis. diff --git a/MAUI/Cartesian-Charts/EmptyPoints.md b/MAUI/Cartesian-Charts/EmptyPoints.md new file mode 100644 index 0000000000..97d72249e0 --- /dev/null +++ b/MAUI/Cartesian-Charts/EmptyPoints.md @@ -0,0 +1,192 @@ +--- +layout: post +title: Empty Points in .NET MAUI Chart control | Syncfusion +description: Learn here all about empty points support and its features in Syncfusion® .NET MAUI Chart (SfCartesianChart) control. +platform: maui +control: SfCartesianChart +documentation: ug +keywords: .net maui chart empty points, .net maui empty points customization, syncfusion maui chart empty points, maui chart empty points, .net maui chart empty points visualization, cartesian empty points maui, missing data handling +--- + +# Empty Points in .NET MAUI Chart + +Empty Points are used to indicate missing or null data in a series. These empty points can occur when data is unavailable, improperly formatted, or explicitly set as null or double.NaN. The chart provides options to handle and customize these empty points to enhance visualization and maintain the integrity of data representation. + +[SfCartesianChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfCartesianChart.html) provides support for empty points, allowing users to handle missing data effectively. + +The data collection that is passed to the chart can have NaN or Null values that are considered as empty points. The empty point can be defined as in the below code example. + +{% highlight C# %} + +ProductSales = new ObservableCollection(); +ProductSales.Add(new Model() { Product = "Electronics", Sales = 60 }); +ProductSales.Add(new Model() { Product = "Clothing", Sales = 40 }); +ProductSales.Add(new Model() { Product = "Groceries", Sales = double.NaN }); +ProductSales.Add(new Model() { Product = "Furniture", Sales = 70 }); +ProductSales.Add(new Model() { Product = "Toys", Sales = 30 }); +ProductSales.Add(new Model() { Product = "Sports", Sales = double.NaN }); +ProductSales.Add(new Model() { Product = "Books", Sales = 50 }); + +{% endhighlight %} + +By default, the `EmptyPointMode` property is `None`. So the empty points will not be rendered as shown in the below. + +![Empty Points in MAUI Chart](EmptyPoints_images/EmptyPoints_Default.png) + +## Empty Point Mode +The `EmptyPointMode` property of series specifies how empty points should be handled. + +This property provides the following options. + +* **None** - Empty points are not rendered. This is the default behavior. +* **Zero** - Empty points will be replaced with zero. +* **Average** - Empty points will be replaced with the average value of the surrounding data points. + +The following code example shows the `EmptyPointMode` as `Zero`. + +{% tabs %} + +{% highlight xaml %} + + + + ..... + + + + + +{% endhighlight %} + +{% highlight c# %} + +SfCartesianChart chart = new SfCartesianChart(); + +..... +LineSeries series = new LineSeries() +{ + ItemsSource = new ViewModel().ProductSales, + XBindingPath = "Product", + YBindingPath = "Sales", + EmptyPointMode = EmptyPointMode.Zero +}; + +chart.Series.Add(series); +this.Content = chart; + +{% endhighlight %} + +{% endtabs %} + +![EmptyPoint Mode Zero in MAUI Chart](EmptyPoints_images/EmptyPoints_Mode_Zero.png) + +The following code example shows the `EmptyPointMode` as `Average`. + +{% tabs %} + +{% highlight xaml %} + + + + ..... + + + + + +{% endhighlight %} + +{% highlight c# %} + +SfCartesianChart chart = new SfCartesianChart(); + +..... +ColumnSeries series = new ColumnSeries() +{ + ItemsSource = new ViewModel().ProductSales, + XBindingPath = "Product", + YBindingPath = "Sales", + EmptyPointMode = EmptyPointMode.Average +}; + +chart.Series.Add(series); +this.Content = chart; + +{% endhighlight %} + +{% endtabs %} + +![EmptyPoint Mode Average in MAUI Chart](EmptyPoints_images/EmptyPoints_Mode_Average.png) + +## Empty Point Customization +The `EmptyPointSettings` property allows you to customize the appearance of empty points in a series. This enables you to adjust various visual aspects of empty points, making them more distinct from the other data points. You can modify the following properties within `EmptyPointSettings`. + +* `Fill` - Gets or sets the fill color for the empty points. +* `Stroke` - Gets or sets the stroke color for empty points. +* `StrokeWidth` - Gets or sets the stroke thickness for empty points. + +{% tabs %} + +{% highlight xaml %} + + + + ..... + + + + + + + + +{% endhighlight %} + +{% highlight c# %} + +SfCartesianChart chart = new SfCartesianChart(); + +..... +LineSeries series = new LineSeries() +{ + ItemsSource = new ViewModel().ProductSales, + XBindingPath = "Product", + YBindingPath = "Sales", + Fill = Color.FromArgb("#3068F7"), + StrokeWidth = 2, + ShowMarkers = true, + ShowDataLabels = true, + EmptyPointMode = EmptyPointMode.Average +}; + +EmptyPointSettings emptypointSettings = new EmptyPointSettings() +{ + Fill = Colors.Orange, + StrokeWidth = 2 +}; + +series.EmptyPointSettings = emptypointSettings; + +chart.Series.Add(series); +this.Content = chart; + +{% endhighlight %} + +{% endtabs %} + +![Customize EmptyPoints in MAUI Chart](EmptyPoints_images\Customize_EmptyPoints.png) + +N> EmptyPoint support is not applicable for Histogram and BoxAndWhisker series. diff --git a/MAUI/Cartesian-Charts/EmptyPoints_images/Customize_EmptyPoints.png b/MAUI/Cartesian-Charts/EmptyPoints_images/Customize_EmptyPoints.png new file mode 100644 index 0000000000..9b7f2c958c Binary files /dev/null and b/MAUI/Cartesian-Charts/EmptyPoints_images/Customize_EmptyPoints.png differ diff --git a/MAUI/Cartesian-Charts/EmptyPoints_images/EmptyPoints_Default.png b/MAUI/Cartesian-Charts/EmptyPoints_images/EmptyPoints_Default.png new file mode 100644 index 0000000000..4a899e9016 Binary files /dev/null and b/MAUI/Cartesian-Charts/EmptyPoints_images/EmptyPoints_Default.png differ diff --git a/MAUI/Cartesian-Charts/EmptyPoints_images/EmptyPoints_Mode_Average.png b/MAUI/Cartesian-Charts/EmptyPoints_images/EmptyPoints_Mode_Average.png new file mode 100644 index 0000000000..4abb63c69b Binary files /dev/null and b/MAUI/Cartesian-Charts/EmptyPoints_images/EmptyPoints_Mode_Average.png differ diff --git a/MAUI/Cartesian-Charts/EmptyPoints_images/EmptyPoints_Mode_Zero.png b/MAUI/Cartesian-Charts/EmptyPoints_images/EmptyPoints_Mode_Zero.png new file mode 100644 index 0000000000..271273ea7e Binary files /dev/null and b/MAUI/Cartesian-Charts/EmptyPoints_images/EmptyPoints_Mode_Zero.png differ diff --git a/MAUI/Cartesian-Charts/PlotBand.md b/MAUI/Cartesian-Charts/PlotBand.md index 4fdeeb8ae9..2c4e15c70e 100644 --- a/MAUI/Cartesian-Charts/PlotBand.md +++ b/MAUI/Cartesian-Charts/PlotBand.md @@ -26,7 +26,7 @@ Plot bands are classified into [NumericalPlotBand](https://help.syncfusion.com/c ## Numerical PlotBand -[NumericalPlotBands](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalPlotBand.html) are used to draw plot bands for [NumericalAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalAxis.html) and [CategoryAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.CategoryAxis.html). To add a plot band, create an instance of [NumericalPlotBandCollection](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalPlotBandCollection.html) and specify numerical value for the [Start](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalPlotBand.html#Syncfusion_Maui_Charts_NumericalPlotBand_Start) and [End](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalPlotBand.html#Syncfusion_Maui_Charts_NumericalPlotBand_End) parameter. These parameters determine the beginning and end of the plot band. +[NumericalPlotBands](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalPlotBand.html) are used to draw plot bands for [NumericalAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalAxis.html), [CategoryAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.CategoryAxis.html), and `DateTimeCategoryAxis`. To add a plot band, create an instance of [NumericalPlotBandCollection](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalPlotBandCollection.html) and specify numerical value for the [Start](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalPlotBand.html#Syncfusion_Maui_Charts_NumericalPlotBand_Start) and [End](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.NumericalPlotBand.html#Syncfusion_Maui_Charts_NumericalPlotBand_End) parameter. These parameters determine the beginning and end of the plot band. {% tabs %} diff --git a/MAUI/ComboBox/UI-Customization.md b/MAUI/ComboBox/UI-Customization.md index 6148c390cf..b5b75c5530 100644 --- a/MAUI/ComboBox/UI-Customization.md +++ b/MAUI/ComboBox/UI-Customization.md @@ -550,6 +550,44 @@ SfComboBox comboBox = new SfComboBox() ![.NET MAUI ComboBox Selected DropDown Item Background](Images/UICustomization/SelectedDropDownItemBackground.png) +### Customize the Selected DropDown Item Text Style + +The [SelectedDropDownItemTextStyle]() property in the SfComboBox control allows developers to customize the appearance of the selected item in the dropdown list. This feature is useful for highlighting user selections and improving the overall UI experience. + +{% tabs %} +{% highlight xaml %} + + + + + + + +{% endhighlight %} + +{% highlight C# %} + +SfComboBox comboBox = new SfComboBox() +{ + ItemsSource = socialMediaViewModel.SocialMedias, + TextMemberPath = "Name", + DisplayMemberPath = "Name", + Placeholder="Enter Media", + SelectedDropDownItemTextStyle = new DropDownTextStyle + { + TextColor = Colors.Orange, + FontSize = 16, + FontAttributes = FontAttributes.Bold + } +}; + +{% endhighlight %} +{% endtabs %} + ### Customize the DropDown Border Color The [DropDownStroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Inputs.DropDownControls.DropDownListBase.html#Syncfusion_Maui_Inputs_DropDownControls_DropDownListBase_DropDownStroke) property is used to modify the border color of the dropdown. diff --git a/MAUI/DataGrid/conditional-styling.md b/MAUI/DataGrid/conditional-styling.md index fb7edaab20..4191e7294d 100644 --- a/MAUI/DataGrid/conditional-styling.md +++ b/MAUI/DataGrid/conditional-styling.md @@ -391,7 +391,11 @@ public class ForeColorConverter : IValueConverter ![Conditional cell styling based on RowIndex and ColumnIndex in .NET MAUI DataGrid](Images/conditional-styling/maui-datagrid-conditional-datagridcelltyle_basedon_rowcolumnindex.png) ### Customizing the BorderColor of a cell +<<<<<<< HEAD You can customize the border color of individual cells in the SfDataGrid based on RowIndex and ColumnIndex property, and setting the `BorderColor` property in DataGridCell by writing the style for the [DataGridCell](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.DataGridCell.html) +======= +You can customize the border color of individual cells in the SfDataGrid based on RowIndex and ColumnIndex property , and setting the `BorderColor` property in DataGridCell by writing the style for the [DataGridCell](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.DataGridCell.html) +>>>>>>> 4e562dc72c58d8d728902da74c896d3096c75170 {% tabs %} {% highlight xaml tabtitle="MainPage.xaml" %} diff --git a/MAUI/Masked-Entry/Basic-Features.md b/MAUI/Masked-Entry/Basic-Features.md index 8ee09cecae..a75a3748d9 100644 --- a/MAUI/Masked-Entry/Basic-Features.md +++ b/MAUI/Masked-Entry/Basic-Features.md @@ -341,6 +341,32 @@ maskedEntry.SelectAllOnFocus = true; {% endhighlight %} {% endtabs %} +## IsReadOnly Mode + +The [`IsReadOnly`]() property allows you to make the masked entry non-editable while keeping it focusable and selectable. When enabled, users can still focus and select text, but cannot modify the value via typing, cut, paste, or the keyboard. The default value of this property is `false`. + +{% tabs %} +{% highlight xaml %} + + + +{% endhighlight %} +{% highlight c# %} + +SfMaskedEntry maskedEntry = new SfMaskedEntry(); +maskedEntry.WidthRequest = 200; +maskedEntry.MaskType = MaskedEntryMaskType.Simple; +maskedEntry.Mask = "(000) 000-0000"; +maskedEntry.Value = "1234567890"; +maskedEntry.IsReadOnly = true; + +{% endhighlight %} +{% endtabs %} + ## ReturnType The `ReturnType` property specifies the return button (e.g., Next, Done, Go) of the keyboard. It helps manage the flow between multiple input fields by defining what happens when the action button is pressed. diff --git a/MAUI/NumericEntry/Basic-Features.md b/MAUI/NumericEntry/Basic-Features.md index 4cf5b4e6f0..423e1b205d 100644 --- a/MAUI/NumericEntry/Basic-Features.md +++ b/MAUI/NumericEntry/Basic-Features.md @@ -278,6 +278,28 @@ The following image illustrates the result of the above code: ![HorizontalTextAlignment](GettingStarted_images/textalignment.png) +## Select text on focus + +The [`SelectAllOnFocus`]() property allows you to automatically select all the text in the numeric entry when the control gains focus. This can improve user efficiency by making it easy to replace the entire content. The default value of this property is `true`. + +{% tabs %} +{% highlight xaml %} + + + +{% endhighlight %} +{% highlight c# %} + +SfNumericEntry numericEntry = new SfNumericEntry(); +numericEntry.WidthRequest = 200; +numericEntry.Value = 123456; +numericEntry.SelectAllOnFocus = false; + +{% endhighlight %} +{% endtabs %} + ## ReturnType The `ReturnType` property specifies the return button (e.g., Next, Done, Go) of the keyboard. It helps manage the flow between multiple input fields by defining what happens when the action button is pressed. diff --git a/MAUI/Polar-Charts/Axis/Axis_Images/maui_dateTimeCategory_axis.png b/MAUI/Polar-Charts/Axis/Axis_Images/maui_dateTimeCategory_axis.png new file mode 100644 index 0000000000..fbb2f72a8e Binary files /dev/null and b/MAUI/Polar-Charts/Axis/Axis_Images/maui_dateTimeCategory_axis.png differ diff --git a/MAUI/Polar-Charts/Axis/Types.md b/MAUI/Polar-Charts/Axis/Types.md index 60f6812062..4d126bd27c 100644 --- a/MAUI/Polar-Charts/Axis/Types.md +++ b/MAUI/Polar-Charts/Axis/Types.md @@ -14,6 +14,7 @@ Polar chart supports the following types of chart axis. * NumericalAxis * CategoryAxis * DateTimeAxis +* DateTimeCategoryAxis ## Numerical Axis @@ -310,6 +311,77 @@ this.Content = chart; {% endtabs %} +## DateTimeCategoryAxis + +The `DateTimeCategoryAxis` is a specialized type of axis primarily used with financial series. Similar to the [CategoryAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.CategoryAxis.html), all data points are plotted with equal spacing, eliminating gaps for missing dates. The intervals and ranges for this axis are calculated similarly to the [DateTimeAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeAxis.html). There are no visual gaps between points, even if the difference between two points exceeds a year. + +{% tabs %} + +{% highlight xaml %} + + + . . . + + + + . . . + + +{% endhighlight %} + +{% highlight c# %} + +SfPolarChart chart = new SfPolarChart(); +. . . +// Create an instance of the DateTimeCategoryAxis, used for displaying DateTime values as categories +DateTimeCategoryAxis primaryAxis = new DateTimeCategoryAxis(); +// Add the DateTimeCategoryAxis instance to the chart's XAxes collection +chart.PrimaryAxis.Add(primaryAxis); +. . . +this.Content = chart; + +{% endhighlight %} + +{% endtabs %} + +![DateTimeCategory Axis support in MAUI Chart](Axis_Images/maui_dateTimeCategory_axis.png) + +### Interval + +In `DateTimeCategoryAxis`, intervals can be customized by using the Interval and IntervalType properties, similar to [DateTimeAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeAxis.html). For example, setting `Interval` as 3 and `IntervalType` as `Months` will consider 3 months as interval. + +{% tabs %} + +{% highlight xaml %} + + + . . . + + + + . . . + + +{% endhighlight %} + +{% highlight c# %} + +SfPolarChart chart = new SfPolarChart(); +. . . +DateTimeCategoryAxis primaryAxis = new DateTimeCategoryAxis() +{ + Interval = 3, + IntervalType = DateTimeIntervalType.Months +}; +chart.PrimaryAxis.Add(primaryAxis); +. . . +this.Content = chart; + +{% endhighlight %} + +{% endtabs %} + ## Inversed Axis can be inverted using the [IsInversed](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_IsInversed) property. The default value of this property is `False`. diff --git a/MAUI/Scheduler/localization.md b/MAUI/Scheduler/localization.md index 22b05b7c75..75d1fb0521 100644 --- a/MAUI/Scheduler/localization.md +++ b/MAUI/Scheduler/localization.md @@ -79,4 +79,3 @@ To localize the `Scheduler` based on `CurrentUICulture` using `resource` files, ![shows-the-added-resource-file-name-value-pair-in-the-resource-designer-in-maui-scheduler](images/localization/shows-the-added-resource-file-name-value-pair-in-the-resource-designer-in-maui-scheduler.png) The complete sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/maui-scheduler-examples/tree/main/Localization). - \ No newline at end of file diff --git a/MAUI/TabView/Tab-Item-Customization.md b/MAUI/TabView/Tab-Item-Customization.md index b4d8ac0960..9429203ec9 100644 --- a/MAUI/TabView/Tab-Item-Customization.md +++ b/MAUI/TabView/Tab-Item-Customization.md @@ -587,7 +587,11 @@ this.Content = stackLayout; ## Disable ripple effect on item click +<<<<<<< HEAD The [EnableRippleAnimation](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TabView.SfTabView.html#Syncfusion_Maui_TabView_SfTabView_EnableRippleAnimation) property of the [SfTabView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TabView.SfTabView.html) allows you to enable or disable the ripple animation for tab headers. This animation provides visual feedback when a tab header is tapped. The default value of the `EnableRippleAnimation` property is `true`. +======= +The `EnableRippleAnimation` property of the [SfTabView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.TabView.SfTabView.html) allows you to enable or disable the ripple animation for tab headers. This animation provides visual feedback when a tab header is tapped. The default value of the `EnableRippleAnimation` property is `true`. +>>>>>>> 4e562dc72c58d8d728902da74c896d3096c75170 {% tabs %} diff --git a/maui-toc.html b/maui-toc.html index e75ed6fbc0..5d1e3ced76 100644 --- a/maui-toc.html +++ b/maui-toc.html @@ -394,6 +394,7 @@
  • Histogram Chart
  • +
  • Empty Points
  • Appearance
  • Plot Band
  • Annotation