diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/AutoScrollingDelta.md b/chart-sdk/maui/Cartesian-Charts/Axis/AutoScrollingDelta.md index c094c1682..1c3654581 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/AutoScrollingDelta.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/AutoScrollingDelta.md @@ -58,8 +58,8 @@ this.Content = chart; The [AutoScrollingMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_AutoScrollingMode) property of the [ChartAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html) class determines whether the axis scrolls from the start or end of the data. The [ChartAutoScrollingMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAutoScrollingMode.html) enum provides the following values: -- `Start` — Scrolls from the start, keeping earlier data points visible as new data is added. -- `End` — Scrolls from the end (default), keeping the latest data points visible as new data is added. +- `Start` - Scrolls from the start, keeping earlier data points visible as new data is added. +- `End` - Scrolls from the end (default), keeping the latest data points visible as new data is added. {% tabs %} @@ -95,14 +95,14 @@ this.Content = chart; When using [DateTimeAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeAxis.html) in .NET MAUI Cartesian Chart, you can set the time unit for auto-scrolling delta using the [AutoScrollingDeltaType](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeAxis.html#Syncfusion_Maui_Charts_DateTimeAxis_AutoScrollingDeltaType) property. The [DateTimeDeltaType](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeDeltaType.html) enum provides the following values: -- `Years` — Sets delta in years. -- `Months` — Sets delta in months. -- `Days` — Sets delta in days. -- `Hours` — Sets delta in hours. -- `Minutes` — Sets delta in minutes. -- `Seconds` — Sets delta in seconds. -- `Milliseconds` — Sets delta in milliseconds. -- `Auto` (default) — Calculates the delta automatically based on the data range. +- `Years` - Sets delta in years. +- `Months` - Sets delta in months. +- `Days` - Sets delta in days. +- `Hours` - Sets delta in hours. +- `Minutes` - Sets delta in minutes. +- `Seconds` - Sets delta in seconds. +- `Milliseconds` - Sets delta in milliseconds. +- `Auto` (default) - Calculates the delta automatically based on the data range. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/Axislabels.md b/chart-sdk/maui/Cartesian-Charts/Axis/Axislabels.md index 459baffc2..26488ef90 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/Axislabels.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/Axislabels.md @@ -18,8 +18,8 @@ N> **Prerequisite:** Ensure that the required NuGet package is installed, the ne The [LabelsPosition](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_LabelsPosition) property is used to position the axis labels inside or outside the chart area. The [AxisElementPosition](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.AxisElementPosition.html) enum provides the following values: -- `Inside` — Positions labels inside the chart area. -- `Outside` (default) — Positions labels outside the chart area. +- `Inside` - Positions labels inside the chart area. +- `Outside` (default) - Positions labels outside the chart area. {% tabs %} @@ -97,25 +97,25 @@ The [LabelStyle](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.Char **Appearance** -* `Background` — Sets the background color of the labels. -* `Stroke` — Sets the border stroke color of the labels. -* `StrokeWidth` — Sets the border thickness of the label. -* `CornerRadius` — Defines the rounded corners for labels. -* `Margin` — Sets the margin of the label. +* `Background` - Sets the background color of the labels. +* `Stroke` - Sets the border stroke color of the labels. +* `StrokeWidth` - Sets the border thickness of the label. +* `CornerRadius` - Defines the rounded corners for labels. +* `Margin` - Sets the margin of the label. **Text Styling** -* `FontAttributes` — Sets the font style (Bold, Italic, None) for the label. -* `FontFamily` — Sets the font family name for the label. -* `FontSize` — Sets the font size for the label. -* `TextColor` — Sets the color for the label text. +* `FontAttributes` - Sets the font style (Bold, Italic, None) for the label. +* `FontFamily` - Sets the font family name for the label. +* `FontSize` - Sets the font size for the label. +* `TextColor` - Sets the color for the label text. **Formatting and Alignment** -* `LabelFormat` — Sets numeric or date-time format for the axis label. -* `LabelAlignment` — Aligns labels at start, end, or center positions. -* `MaxWidth` — Sets the wrap width of the axis labels. -* `WrappedLabelAlignment` — Sets the horizontal rendering position of wrapped labels. Default is `Start`; other values are `Center` and `End`. +* `LabelFormat` - Sets numeric or date-time format for the axis label. +* `LabelAlignment` - Aligns labels at start, end, or center positions. +* `MaxWidth` - Sets the wrap width of the axis labels. +* `WrappedLabelAlignment` - Sets the horizontal rendering position of wrapped labels. Default is `Start`; other values are `Center` and `End`. ## Edge labels drawing mode @@ -164,9 +164,9 @@ this.Content = chart; The [EdgeLabelsVisibilityMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.RangeAxisBase.html#Syncfusion_Maui_Charts_RangeAxisBase_EdgeLabelsVisibilityMode) property controls the visibility of edge labels. The [EdgeLabelsVisibilityMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EdgeLabelsVisibilityMode.html) enum provides the following values: -- `Default` (default) — Displays edge labels based on auto interval calculations. -- `AlwaysVisible` — Shows edge labels even when the chart is zoomed. -- `Visible` — Displays edge labels in normal state until zooming occurs. +- `Default` (default) - Displays edge labels based on auto interval calculations. +- `AlwaysVisible` - Shows edge labels even when the chart is zoomed. +- `Visible` - Displays edge labels in normal state until zooming occurs. ### Always visible @@ -238,10 +238,10 @@ this.Content = chart; Axis labels may overlap based on chart dimensions and label size. The [LabelsIntersectAction](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_LabelsIntersectAction) property prevents overlapping. The [AxisLabelsIntersectAction](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.AxisLabelsIntersectAction.html) enum provides the following values (default is `Hide`): -- `Hide` — Hides overlapping labels. -- `MultipleRows` — Arranges overlapping labels in multiple rows. -- `None` — Displays all labels without any action. -- `Wrap` — Wraps label text to fit within specified width (requires [MaxWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxisLabelStyle.html#Syncfusion_Maui_Charts_ChartAxisLabelStyle_MaxWidth) property). Alignment can be controlled using [WrappedLabelAlignment](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxisLabelStyle.html#Syncfusion_Maui_Charts_ChartAxisLabelStyle_WrappedLabelAlignment) property. +- `Hide` - Hides overlapping labels. +- `MultipleRows` - Arranges overlapping labels in multiple rows. +- `None` - Displays all labels without any action. +- `Wrap` - Wraps label text to fit within specified width (requires [MaxWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxisLabelStyle.html#Syncfusion_Maui_Charts_ChartAxisLabelStyle_MaxWidth) property). Alignment can be controlled using [WrappedLabelAlignment](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxisLabelStyle.html#Syncfusion_Maui_Charts_ChartAxisLabelStyle_WrappedLabelAlignment) property. {% tabs %} @@ -317,9 +317,9 @@ this.Content = chart; The `AxisLabelTapped` event occurs when a user taps on an axis label. The [AxisLabelTappedEventArgs](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.AxisLabelTappedEventArgs.html) class provides the following properties: -* `Axis` — Gets the associated axis where the label was tapped. -* `AxisLabel` — Gets the `ChartAxisLabel` object containing details about the tapped label. -* `Position` — Gets the screen coordinates (X, Y) of the tap location in device-independent pixels. +* `Axis` - Gets the associated axis where the label was tapped. +* `AxisLabel` - Gets the `ChartAxisLabel` object containing details about the tapped label. +* `Position` - Gets the screen coordinates (X, Y) of the tap location in device-independent pixels. {% tabs %} diff --git a/chart-sdk/maui/Cartesian-Charts/Axis/Axisline.md b/chart-sdk/maui/Cartesian-Charts/Axis/Axisline.md index 9ed1367f5..c8d1e833a 100644 --- a/chart-sdk/maui/Cartesian-Charts/Axis/Axisline.md +++ b/chart-sdk/maui/Cartesian-Charts/Axis/Axisline.md @@ -18,9 +18,9 @@ N> **Prerequisite:** Ensure that the required NuGet package is installed, the ne The [AxisLineStyle](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartAxis.html#Syncfusion_Maui_Charts_ChartAxis_AxisLineStyle) property allows you to customize the axis line appearance. The [ChartLineStyle](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLineStyle.html) class provides the following properties: -* `Stroke` — Sets the color of the axis line. -* `StrokeWidth` — Sets the width of the axis line in pixels. -* `DashArray` — Sets the dash pattern for the axis line (e.g., solid, dotted, dashed). +* `Stroke` - Sets the color of the axis line. +* `StrokeWidth` - Sets the width of the axis line in pixels. +* `DashArray` - Sets the dash pattern for the axis line (e.g., solid, dotted, dashed). {% tabs %} diff --git a/chart-sdk/maui/Circular-Charts/Exporting.md b/chart-sdk/maui/Circular-Charts/Exporting.md index 40b219cbe..24423acd0 100644 --- a/chart-sdk/maui/Circular-Charts/Exporting.md +++ b/chart-sdk/maui/Circular-Charts/Exporting.md @@ -36,8 +36,8 @@ T> Change the file extension (.jpg, .jpeg, or .png) to export in a different ima The exported image will be saved in different locations across platforms: -* **Windows and Android** — The image is saved in the Pictures directory. -* **macOS and iOS** — The image is saved in the Photos/Album directory. +* **Windows and Android** - The image is saved in the Pictures directory. +* **macOS and iOS** - The image is saved in the Photos/Album directory. ### Platform-specific permissions @@ -89,8 +89,8 @@ Stream stream = await chart.GetStreamAsync(ImageFileFormat.Jpeg); ## Related resources -* [.NET MAUI Charts feature tour](https://www.syncfusion.com/maui-controls) — Explore groundbreaking features and capabilities. -* [.NET MAUI Charts examples](https://github.com/syncfusion/maui-demos) — Discover various chart types and their configurations. +* [.NET MAUI Charts feature tour](https://www.syncfusion.com/maui-controls) - Explore groundbreaking features and capabilities. +* [.NET MAUI Charts examples](https://github.com/syncfusion/maui-demos) - Discover various chart types and their configurations. diff --git a/chart-sdk/maui/Funnel-Charts/DataLabels.md b/chart-sdk/maui/Funnel-Charts/DataLabels.md index 89979d0e5..60d04327b 100644 --- a/chart-sdk/maui/Funnel-Charts/DataLabels.md +++ b/chart-sdk/maui/Funnel-Charts/DataLabels.md @@ -54,18 +54,18 @@ Data labels can be customized using the [DataLabelSettings](https://help.syncfus The following properties in [FunnelDataLabelSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.FunnelDataLabelSettings.html) are used to customize data labels: -* [`LabelPlacement`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_LabelPlacement) — Positions the funnel chart data labels at [Auto](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Auto), [Inner](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Inner), [Center](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Center), or [Outer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Outer). Default value is `Auto`. -* [`UseSeriesPalette`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_UseSeriesPalette) — Sets the chart segment color as the data label background color. -* [`Context`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.FunnelDataLabelSettings.html#Syncfusion_Maui_Charts_FunnelDataLabelSettings_Context) — Gets or sets the content to be displayed in the label using the [FunnelDataLabelContext](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.FunnelDataLabelContext.html) enum. Supported values are `XValue` and `YValue`. -* [`LabelStyle`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_LabelStyle) — Customizes the appearance of the data labels. Properties available in the [ChartDataLabelStyle](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelStyle.html) class include: - * [Margin](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Margin) — Gets or sets the label margin (type: `Thickness`). - * [Background](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Background) — Gets or sets the label background color (type: `Brush`). - * [FontAttributes](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_FontAttributes) — Gets or sets the font style (type: `FontAttributes`). - * [FontSize](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_FontSize) — Gets or sets the font size (type: `double`). - * [Stroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Stroke) — Gets or sets the border color (type: `Brush`). - * [StrokeWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_StrokeWidth) — Gets or sets the border width (type: `double`). - * [CornerRadius](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_CornerRadius) — Gets or sets the rounded corners for the label (type: `CornerRadius`). - * [TextColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_TextColor) — Gets or sets the label text color (type: `Color`). +* [`LabelPlacement`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_LabelPlacement) - Positions the funnel chart data labels at [Auto](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Auto), [Inner](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Inner), [Center](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Center), or [Outer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Outer). Default value is `Auto`. +* [`UseSeriesPalette`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_UseSeriesPalette) - Sets the chart segment color as the data label background color. +* [`Context`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.FunnelDataLabelSettings.html#Syncfusion_Maui_Charts_FunnelDataLabelSettings_Context) - Gets or sets the content to be displayed in the label using the [FunnelDataLabelContext](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.FunnelDataLabelContext.html) enum. Supported values are `XValue` and `YValue`. +* [`LabelStyle`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_LabelStyle) - Customizes the appearance of the data labels. Properties available in the [ChartDataLabelStyle](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelStyle.html) class include: + * [Margin](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Margin) - Gets or sets the label margin (type: `Thickness`). + * [Background](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Background) - Gets or sets the label background color (type: `Brush`). + * [FontAttributes](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_FontAttributes) - Gets or sets the font style (type: `FontAttributes`). + * [FontSize](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_FontSize) - Gets or sets the font size (type: `double`). + * [Stroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Stroke) - Gets or sets the border color (type: `Brush`). + * [StrokeWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_StrokeWidth) - Gets or sets the border width (type: `double`). + * [CornerRadius](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_CornerRadius) - Gets or sets the rounded corners for the label (type: `CornerRadius`). + * [TextColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_TextColor) - Gets or sets the label text color (type: `Color`). {% tabs %} diff --git a/chart-sdk/maui/Funnel-Charts/Exporting.md b/chart-sdk/maui/Funnel-Charts/Exporting.md index 44ab3ee6e..ed5750356 100644 --- a/chart-sdk/maui/Funnel-Charts/Exporting.md +++ b/chart-sdk/maui/Funnel-Charts/Exporting.md @@ -42,8 +42,8 @@ T> Change the file extension (.jpg, .jpeg, or .png) to export in a different ima The exported image will be saved in different locations across platforms: -* **Windows and Android** — The image is saved in the Pictures directory. -* **macOS and iOS** — The image is saved in the Photos/Album directory. +* **Windows and Android** - The image is saved in the Pictures directory. +* **macOS and iOS** - The image is saved in the Photos/Album directory. ### Platform-specific permissions @@ -100,6 +100,6 @@ Stream stream = await chart.GetStreamAsync(ImageFileFormat.Jpeg); ## Related resources -* [.NET MAUI Charts feature tour](https://www.syncfusion.com/maui-controls) — Explore groundbreaking features and capabilities. -* [.NET MAUI Charts examples](https://github.com/syncfusion/maui-demos) — Discover various chart types and their configurations. +* [.NET MAUI Charts feature tour](https://www.syncfusion.com/maui-controls) - Explore groundbreaking features and capabilities. +* [.NET MAUI Charts examples](https://github.com/syncfusion/maui-demos) - Discover various chart types and their configurations. diff --git a/chart-sdk/maui/Funnel-Charts/Legend.md b/chart-sdk/maui/Funnel-Charts/Legend.md index 0888e248b..0edecbc7f 100644 --- a/chart-sdk/maui/Funnel-Charts/Legend.md +++ b/chart-sdk/maui/Funnel-Charts/Legend.md @@ -90,11 +90,11 @@ this.Content = chart; The appearance of the legend label can be customized using the [LabelStyle](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegend.html#Syncfusion_Maui_Charts_ChartLegend_LabelStyle) property. -* [`TextColor`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_TextColor) — Gets or sets the color of the label. -* [`FontFamily`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontFamily) — Gets or sets the font family for the legend label. -* [`FontAttributes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontAttributes) — Gets or sets the font style for the legend label. -* [`FontSize`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontSize) — Gets or sets the font size for the legend label. -* [`Margin`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_Margin) — Gets or sets the margin size of labels. +* [`TextColor`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_TextColor) - Gets or sets the color of the label. +* [`FontFamily`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontFamily) - Gets or sets the font family for the legend label. +* [`FontAttributes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontAttributes) - Gets or sets the font style for the legend label. +* [`FontSize`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontSize) - Gets or sets the font size for the legend label. +* [`Margin`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_Margin) - Gets or sets the margin size of labels. {% tabs %} @@ -219,8 +219,8 @@ this.Content = chart; The floating legend feature allows you to position the legend inside the chart area based on its defined placement. When [IsFloating](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegend.html#Syncfusion_Maui_Charts_ChartLegend_IsFloating) is set to true, the legend will start from the specified [Placement](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegend.html#Syncfusion_Maui_Charts_ChartLegend_Placement) (such as Top, Bottom, Left, or Right) and then move according to the offset values, enabling precise control over the legend’s location. -* [OffsetX](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegend.html#Syncfusion_Maui_Charts_ChartLegend_OffsetX) — Specifies the horizontal distance from the defined placement position. -* [OffsetY](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegend.html#Syncfusion_Maui_Charts_ChartLegend_OffsetY) — Specifies the vertical distance from the defined placement position. +* [OffsetX](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegend.html#Syncfusion_Maui_Charts_ChartLegend_OffsetX) - Specifies the horizontal distance from the defined placement position. +* [OffsetY](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegend.html#Syncfusion_Maui_Charts_ChartLegend_OffsetY) - Specifies the vertical distance from the defined placement position. {% tabs %} @@ -450,20 +450,20 @@ this.Content = chart; The [`LegendItemCreated`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegend.html#Syncfusion_Maui_Charts_ChartLegend_LegendItemCreated) event is triggered when the chart legend item is created. The argument contains the [`LegendItem`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.LegendItemEventArgs.html#Syncfusion_Maui_Core_LegendItemEventArgs_LegendItem) object. The following properties are present in [`LegendItem`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.LegendItemEventArgs.html#Syncfusion_Maui_Core_LegendItemEventArgs_LegendItem). -* [`Text`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Text) — Used to get or set the text of the label. -* [`TextColor`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_TextColor) — Used to get or set the color of the label. -* [`FontFamily`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontFamily) — Used to get or set the font family for the legend label. -* [`FontAttributes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontAttributes) — Used to get or set the font style for the legend label. -* [`FontSize`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontSize) — Used to get or set the font size for the legend label. -* [`TextMargin`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_TextMargin) — Used to get or set the margin size of labels. -* [`IconBrush`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconBrush) — Used to change the color of the legend icon. -* [`IconType`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconType) — Used to get or set the icon type for the legend icon. -* [`IconHeight`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconHeight) — Used to get or set the icon height of the legend icon. -* [`IconWidth`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconWidth) — Used to get or set the icon width of the legend icon. -* [`IsToggled`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IsToggled) — Used to get or set the toggle visibility of the legend. -* [`DisableBrush`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_DisableBrush) — Used to get or set the color of the legend when toggled. -* [`Index`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Index) — Used to get index position of the legend. -* [`Item`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Item) — Used to get the corresponding segment for the legend item. +* [`Text`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Text) - Used to get or set the text of the label. +* [`TextColor`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_TextColor) - Used to get or set the color of the label. +* [`FontFamily`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontFamily) - Used to get or set the font family for the legend label. +* [`FontAttributes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontAttributes) - Used to get or set the font style for the legend label. +* [`FontSize`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontSize) - Used to get or set the font size for the legend label. +* [`TextMargin`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_TextMargin) - Used to get or set the margin size of labels. +* [`IconBrush`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconBrush) - Used to change the color of the legend icon. +* [`IconType`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconType) - Used to get or set the icon type for the legend icon. +* [`IconHeight`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconHeight) - Used to get or set the icon height of the legend icon. +* [`IconWidth`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconWidth) - Used to get or set the icon width of the legend icon. +* [`IsToggled`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IsToggled) - Used to get or set the toggle visibility of the legend. +* [`DisableBrush`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_DisableBrush) - Used to get or set the color of the legend when toggled. +* [`Index`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Index) - Used to get index position of the legend. +* [`Item`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Item) - Used to get the corresponding segment for the legend item. ## Limitations diff --git a/chart-sdk/maui/Funnel-Charts/Tooltip.md b/chart-sdk/maui/Funnel-Charts/Tooltip.md index ddc46c206..f1cbe4e3d 100644 --- a/chart-sdk/maui/Funnel-Charts/Tooltip.md +++ b/chart-sdk/maui/Funnel-Charts/Tooltip.md @@ -49,16 +49,16 @@ this.Content = chart; The [ChartTooltipBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html) is used to customize the tooltip. To customize the tooltip, create an instance of [ChartTooltipBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html) and set it to the [TooltipBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBase.html#Syncfusion_Maui_Charts_ChartBase_TooltipBehavior) property of [SfFunnelChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfFunnelChart.html). The following properties are used to customize the tooltip: -* [Background](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Background) of type `Brush` — indicates the background color of the tooltip label. -* [FontAttributes](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontAttributes) of type `FontAttributes` — indicates the font style of the label. -* [FontFamily](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontFamily) of type `string` — indicates the font family for the label. -* [FontSize](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontSize) of type `float` — indicates the font size. -* [Duration](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Duration) of type `int` — indicates the duration for displaying the tooltip. -* [Margin](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Margin) of type `Thickness` — indicates the label's margin. -* [TextColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_TextColor) of type `Color` — indicates the color of the displayed text. -* [Stroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Stroke) of type `Brush` — indicates the border color of the tooltip. -* [StrokeWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_StrokeWidth) of type `double` — indicates the thickness of the tooltip border. -* [UseSeriesFillColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_UseSeriesFillColor) of type `bool` — indicates whether the tooltip background should use the fill color of the associated segment; when `true`, the tooltip adopts the segment color as its background. +* [Background](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Background) of type `Brush` - indicates the background color of the tooltip label. +* [FontAttributes](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontAttributes) of type `FontAttributes` - indicates the font style of the label. +* [FontFamily](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontFamily) of type `string` - indicates the font family for the label. +* [FontSize](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontSize) of type `float` - indicates the font size. +* [Duration](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Duration) of type `int` - indicates the duration for displaying the tooltip. +* [Margin](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Margin) of type `Thickness` - indicates the label's margin. +* [TextColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_TextColor) of type `Color` - indicates the color of the displayed text. +* [Stroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Stroke) of type `Brush` - indicates the border color of the tooltip. +* [StrokeWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_StrokeWidth) of type `double` - indicates the thickness of the tooltip border. +* [UseSeriesFillColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_UseSeriesFillColor) of type `bool` - indicates whether the tooltip background should use the fill color of the associated segment; when `true`, the tooltip adopts the segment color as its background. {% tabs %} diff --git a/chart-sdk/maui/Polar-Charts/Getting-Started.md b/chart-sdk/maui/Polar-Charts/Getting-Started.md index 2792462c4..e72c71bb8 100644 --- a/chart-sdk/maui/Polar-Charts/Getting-Started.md +++ b/chart-sdk/maui/Polar-Charts/Getting-Started.md @@ -151,8 +151,8 @@ public class PlantModel {% endtabs %} **Data model properties:** -- `Direction` — Category name displayed on the primary axis (N, NE, E, SE, etc.) -- `Tree`, `Flower`, `Weed` — Numeric values plotted on the secondary (radial) axis for each direction +- `Direction` - Category name displayed on the primary axis (N, NE, E, SE, etc.) +- `Tree`, `Flower`, `Weed` - Numeric values plotted on the secondary (radial) axis for each direction Next, create a `PlantViewModel` class and initialize a list of `PlantModel` objects as follows. diff --git a/chart-sdk/maui/Polar-Charts/PolarArea.md b/chart-sdk/maui/Polar-Charts/PolarArea.md index 0618dda1e..86d1bacf4 100644 --- a/chart-sdk/maui/Polar-Charts/PolarArea.md +++ b/chart-sdk/maui/Polar-Charts/PolarArea.md @@ -65,8 +65,8 @@ this.Content = chart; The [GridLineType](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPolarChart.html#Syncfusion_Maui_Charts_SfPolarChart_GridLineType) property customizes the rendering style of axis grid lines: -* **Circle** (default) — Renders concentric circular grid lines, creating a target-like appearance -* **Polygon** — Renders polygonal grid lines, creating a web or spider chart appearance +* **Circle** (default) - Renders concentric circular grid lines, creating a target-like appearance +* **Polygon** - Renders polygonal grid lines, creating a web or spider chart appearance {% tabs %} diff --git a/chart-sdk/maui/Polar-Charts/PolarLine.md b/chart-sdk/maui/Polar-Charts/PolarLine.md index 4743cd2d7..2d775be64 100644 --- a/chart-sdk/maui/Polar-Charts/PolarLine.md +++ b/chart-sdk/maui/Polar-Charts/PolarLine.md @@ -65,9 +65,9 @@ this.Content = chart; You can customize the polar line series appearance using the following properties: -* [Stroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartSeries.html#Syncfusion_Maui_Charts_ChartSeries_Stroke) — Gets or sets the brush for the line color -* [StrokeWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartSeries.html#Syncfusion_Maui_Charts_ChartSeries_StrokeWidth) — Gets or sets the thickness of the line -* [StrokeDashArray](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartSeries.html#Syncfusion_Maui_Charts_ChartSeries_StrokeDashArray) — Gets or sets the pattern for dashed lines +* [Stroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartSeries.html#Syncfusion_Maui_Charts_ChartSeries_Stroke) - Gets or sets the brush for the line color +* [StrokeWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartSeries.html#Syncfusion_Maui_Charts_ChartSeries_StrokeWidth) - Gets or sets the thickness of the line +* [StrokeDashArray](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartSeries.html#Syncfusion_Maui_Charts_ChartSeries_StrokeDashArray) - Gets or sets the pattern for dashed lines The following code example demonstrates line customization: diff --git a/chart-sdk/maui/Polar-Charts/migration.md b/chart-sdk/maui/Polar-Charts/migration.md index 91907be8e..26908ed5f 100644 --- a/chart-sdk/maui/Polar-Charts/migration.md +++ b/chart-sdk/maui/Polar-Charts/migration.md @@ -689,8 +689,8 @@ this.Content = chart; The following features from Xamarin.Forms are not supported in .NET MAUI: -* Data label creation events — Create a custom data label handler instead by using the [DrawDataLabel](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartSeries.html#Syncfusion_Maui_Charts_ChartSeries_DrawDataLabel_Microsoft_Maui_Graphics_ICanvas_Microsoft_Maui_Controls_Brush_System_String_Microsoft_Maui_Graphics_PointF_System_Int32_) override method. -* ChartDataPoint model class — Use your own custom data model instead. +* Data label creation events - Create a custom data label handler instead by using the [DrawDataLabel](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartSeries.html#Syncfusion_Maui_Charts_ChartSeries_DrawDataLabel_Microsoft_Maui_Graphics_ICanvas_Microsoft_Maui_Controls_Brush_System_String_Microsoft_Maui_Graphics_PointF_System_Int32_) override method. +* ChartDataPoint model class - Use your own custom data model instead. ## Limitations diff --git a/chart-sdk/maui/Pyramid-Charts/DataLabels.md b/chart-sdk/maui/Pyramid-Charts/DataLabels.md index 48247e3d6..3b3a11a55 100644 --- a/chart-sdk/maui/Pyramid-Charts/DataLabels.md +++ b/chart-sdk/maui/Pyramid-Charts/DataLabels.md @@ -55,18 +55,18 @@ Data labels can be customized using the [DataLabelSettings](https://help.syncfus The following properties in [PyramidDataLabelSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PyramidDataLabelSettings.html) are used to customize data labels: -* [`LabelPlacement`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_LabelPlacement) — Positions the pyramid chart data labels at [Auto](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Auto), [Inner](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Inner), [Center](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Center), or [Outer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Outer). Default value is `Auto`. -* [`UseSeriesPalette`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_UseSeriesPalette) — Sets the chart segment color as the data label background color. -* [`Context`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PyramidDataLabelSettings.html#Syncfusion_Maui_Charts_PyramidDataLabelSettings_Context) — Gets or sets the content to be displayed in the label using the [PyramidDataLabelContext](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PyramidDataLabelContext.html) enum. Supported values are `XValue` and `YValue`. -* [`LabelStyle`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_LabelStyle) — Customizes the appearance of the data labels. Properties available in the [ChartDataLabelStyle](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelStyle.html) class include: - * [Margin](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Margin) — Gets or sets the label margin (type: `Thickness`). - * [Background](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Background) — Gets or sets the label background color (type: `Brush`). - * [FontAttributes](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_FontAttributes) — Gets or sets the font style (type: `FontAttributes`). - * [FontSize](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_FontSize) — Gets or sets the font size (type: `double`). - * [Stroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Stroke) — Gets or sets the border color (type: `Brush`). - * [StrokeWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_StrokeWidth) — Gets or sets the border width (type: `double`). - * [CornerRadius](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_CornerRadius) — Gets or sets the rounded corners for the label (type: `CornerRadius`). - * [TextColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_TextColor) — Gets or sets the label text color (type: `Color`). +* [`LabelPlacement`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_LabelPlacement) - Positions the pyramid chart data labels at [Auto](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Auto), [Inner](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Inner), [Center](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Center), or [Outer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DataLabelPlacement.html#Syncfusion_Maui_Charts_DataLabelPlacement_Outer). Default value is `Auto`. +* [`UseSeriesPalette`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_UseSeriesPalette) - Sets the chart segment color as the data label background color. +* [`Context`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PyramidDataLabelSettings.html#Syncfusion_Maui_Charts_PyramidDataLabelSettings_Context) - Gets or sets the content to be displayed in the label using the [PyramidDataLabelContext](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.PyramidDataLabelContext.html) enum. Supported values are `XValue` and `YValue`. +* [`LabelStyle`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelSettings.html#Syncfusion_Maui_Charts_ChartDataLabelSettings_LabelStyle) - Customizes the appearance of the data labels. Properties available in the [ChartDataLabelStyle](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartDataLabelStyle.html) class include: + * [Margin](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Margin) - Gets or sets the label margin (type: `Thickness`). + * [Background](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Background) - Gets or sets the label background color (type: `Brush`). + * [FontAttributes](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_FontAttributes) - Gets or sets the font style (type: `FontAttributes`). + * [FontSize](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_FontSize) - Gets or sets the font size (type: `double`). + * [Stroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_Stroke) - Gets or sets the border color (type: `Brush`). + * [StrokeWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_StrokeWidth) - Gets or sets the border width (type: `double`). + * [CornerRadius](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_CornerRadius) - Gets or sets the rounded corners for the label (type: `CornerRadius`). + * [TextColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLabelStyle.html#Syncfusion_Maui_Charts_ChartLabelStyle_TextColor) - Gets or sets the label text color (type: `Color`). {% tabs %} diff --git a/chart-sdk/maui/Pyramid-Charts/Exporting.md b/chart-sdk/maui/Pyramid-Charts/Exporting.md index 8adfa280a..e633f3781 100644 --- a/chart-sdk/maui/Pyramid-Charts/Exporting.md +++ b/chart-sdk/maui/Pyramid-Charts/Exporting.md @@ -42,8 +42,8 @@ T> Change the file extension (.jpg, .jpeg, or .png) to export in a different ima The exported image will be saved in different locations across platforms: -* **Windows and Android** — The image is saved in the Pictures directory. -* **macOS and iOS** — The image is saved in the Photos/Album directory. +* **Windows and Android** - The image is saved in the Pictures directory. +* **macOS and iOS** - The image is saved in the Photos/Album directory. ### Platform-specific permissions @@ -100,8 +100,8 @@ Stream stream = await chart.GetStreamAsync(ImageFileFormat.Jpeg); ## Related resources -* [.NET MAUI Charts feature tour](https://www.syncfusion.com/maui-controls) — Explore groundbreaking features and capabilities. -* [.NET MAUI Charts examples](https://github.com/syncfusion/maui-demos) — Discover various chart types and their configurations. +* [.NET MAUI Charts feature tour](https://www.syncfusion.com/maui-controls) - Explore groundbreaking features and capabilities. +* [.NET MAUI Charts examples](https://github.com/syncfusion/maui-demos) - Discover various chart types and their configurations. diff --git a/chart-sdk/maui/Pyramid-Charts/Legend.md b/chart-sdk/maui/Pyramid-Charts/Legend.md index c4827f450..0cf2d6fc1 100644 --- a/chart-sdk/maui/Pyramid-Charts/Legend.md +++ b/chart-sdk/maui/Pyramid-Charts/Legend.md @@ -90,11 +90,11 @@ this.Content = chart; The appearance of the legend label can be customized using the [LabelStyle](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegend.html#Syncfusion_Maui_Charts_ChartLegend_LabelStyle) property. -* [`TextColor`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_TextColor) — Gets or sets the color of the label. -* [`FontFamily`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontFamily) — Gets or sets the font family for the legend label. -* [`FontAttributes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontAttributes) — Gets or sets the font style for the legend label. -* [`FontSize`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontSize) — Gets or sets the font size for the legend label. -* [`Margin`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_Margin) — Gets or sets the margin size of labels. +* [`TextColor`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_TextColor) - Gets or sets the color of the label. +* [`FontFamily`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontFamily) - Gets or sets the font family for the legend label. +* [`FontAttributes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontAttributes) - Gets or sets the font style for the legend label. +* [`FontSize`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_FontSize) - Gets or sets the font size for the legend label. +* [`Margin`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegendLabelStyle.html#Syncfusion_Maui_Charts_ChartLegendLabelStyle_Margin) - Gets or sets the margin size of labels. {% tabs %} @@ -441,20 +441,20 @@ this.Content = chart; The [LegendItemCreated](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartLegend.html#Syncfusion_Maui_Charts_ChartLegend_LegendItemCreated) event is triggered when the chart legend item is created. The argument contains the [LegendItem](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.LegendItemEventArgs.html#Syncfusion_Maui_Core_LegendItemEventArgs_LegendItem) object. The following properties are present in [LegendItem](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.LegendItemEventArgs.html#Syncfusion_Maui_Core_LegendItemEventArgs_LegendItem): -* [`Text`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Text) — Gets or sets the text of the label. -* [`TextColor`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_TextColor) — Gets or sets the color of the label. -* [`FontFamily`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontFamily) — Gets or sets the font family for the legend label. -* [`FontAttributes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontAttributes) — Gets or sets the font style for the legend label. -* [`FontSize`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontSize) — Gets or sets the font size for the legend label. -* [`TextMargin`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_TextMargin) — Gets or sets the margin size of labels. -* [`IconBrush`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconBrush) — Gets or sets the color of the legend icon. -* [`IconType`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconType) — Gets or sets the icon type for the legend icon. -* [`IconHeight`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconHeight) — Gets or sets the icon height of the legend icon. -* [`IconWidth`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconWidth) — Gets or sets the icon width of the legend icon. -* [`IsToggled`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IsToggled) — Gets or sets the toggle visibility of the legend. -* [`DisableBrush`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_DisableBrush) — Gets or sets the color of the legend when toggled. -* [`Index`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Index) — Gets the index position of the legend. -* [`Item`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Item) — Gets the corresponding series for the legend item. +* [`Text`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Text) - Gets or sets the text of the label. +* [`TextColor`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_TextColor) - Gets or sets the color of the label. +* [`FontFamily`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontFamily) - Gets or sets the font family for the legend label. +* [`FontAttributes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontAttributes) - Gets or sets the font style for the legend label. +* [`FontSize`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_FontSize) - Gets or sets the font size for the legend label. +* [`TextMargin`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_TextMargin) - Gets or sets the margin size of labels. +* [`IconBrush`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconBrush) - Gets or sets the color of the legend icon. +* [`IconType`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconType) - Gets or sets the icon type for the legend icon. +* [`IconHeight`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconHeight) - Gets or sets the icon height of the legend icon. +* [`IconWidth`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IconWidth) - Gets or sets the icon width of the legend icon. +* [`IsToggled`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_IsToggled) - Gets or sets the toggle visibility of the legend. +* [`DisableBrush`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_DisableBrush) - Gets or sets the color of the legend when toggled. +* [`Index`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Index) - Gets the index position of the legend. +* [`Item`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.ILegendItem.html#Syncfusion_Maui_Core_ILegendItem_Item) - Gets the corresponding series for the legend item. The following code example demonstrates how to handle the LegendItemCreated event: diff --git a/chart-sdk/maui/Pyramid-Charts/Tooltip.md b/chart-sdk/maui/Pyramid-Charts/Tooltip.md index 0ac49a5f2..9c109f49e 100644 --- a/chart-sdk/maui/Pyramid-Charts/Tooltip.md +++ b/chart-sdk/maui/Pyramid-Charts/Tooltip.md @@ -49,16 +49,16 @@ this.Content = chart; The [ChartTooltipBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html) is used to customize the tooltip. To customize the tooltip, create an instance of [ChartTooltipBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html) and set it to the [TooltipBehavior](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartBase.html#Syncfusion_Maui_Charts_ChartBase_TooltipBehavior) property of [SfPyramidChart](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.SfPyramidChart.html). The following properties are used to customize the tooltip: -* [Background](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Background) of type `Brush` — indicates the background color of the tooltip label. -* [FontAttributes](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontAttributes) of type `FontAttributes` — indicates the font style of the label. -* [FontFamily](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontFamily) of type `string` — indicates the font family for the label. -* [FontSize](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontSize) of type `float` — indicates the font size. -* [Duration](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Duration) of type `int` — indicates the duration for displaying the tooltip. -* [Margin](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Margin) of type `Thickness` — indicates the label's margin. -* [TextColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_TextColor) of type `Color` — indicates the color of the displayed text. -* [Stroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Stroke) of type `Brush` — indicates the border color of the tooltip. -* [StrokeWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_StrokeWidth) of type `double` — indicates the thickness of the tooltip border. -* [UseSeriesFillColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_UseSeriesFillColor) of type `bool` — indicates whether the tooltip background should use the fill color of the associated segment; when `true`, the tooltip adopts the segment color as its background. +* [Background](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Background) of type `Brush` - indicates the background color of the tooltip label. +* [FontAttributes](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontAttributes) of type `FontAttributes` - indicates the font style of the label. +* [FontFamily](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontFamily) of type `string` - indicates the font family for the label. +* [FontSize](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_FontSize) of type `float` - indicates the font size. +* [Duration](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Duration) of type `int` - indicates the duration for displaying the tooltip. +* [Margin](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Margin) of type `Thickness` - indicates the label's margin. +* [TextColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_TextColor) of type `Color` - indicates the color of the displayed text. +* [Stroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_Stroke) of type `Brush` - indicates the border color of the tooltip. +* [StrokeWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_StrokeWidth) of type `double` - indicates the thickness of the tooltip border. +* [UseSeriesFillColor](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.ChartTooltipBehavior.html#Syncfusion_Maui_Charts_ChartTooltipBehavior_UseSeriesFillColor) of type `bool` - indicates whether the tooltip background should use the fill color of the associated segment; when `true`, the tooltip adopts the segment color as its background. {% tabs %} diff --git a/chart-sdk/maui/barcode-generator/customization.md b/chart-sdk/maui/barcode-generator/customization.md index aa22ee81d..5de9ab5b8 100644 --- a/chart-sdk/maui/barcode-generator/customization.md +++ b/chart-sdk/maui/barcode-generator/customization.md @@ -48,10 +48,10 @@ this.Content = barcode; The style of the text can be customized using the [`TextStyle`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.SfBarcodeGenerator.html#Syncfusion_Maui_Barcode_SfBarcodeGenerator_TextStyle) property of the barcode generator. The `TextStyle` property accepts a [`BarcodeTextStyle`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.BarcodeTextStyle.html) object, which provides the following properties: -- [`FontAttributes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.BarcodeTextStyle.html#Syncfusion_Maui_Barcode_BarcodeTextStyle_FontAttributes) — Gets or sets the font attributes. -- [`FontFamily`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.BarcodeTextStyle.html#Syncfusion_Maui_Barcode_BarcodeTextStyle_FontFamily) — Gets or sets the font family. -- [`FontSize`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.BarcodeTextStyle.html#Syncfusion_Maui_Barcode_BarcodeTextStyle_FontSize) — Gets or sets the font size. -- [`TextColor`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.BarcodeTextStyle.html#Syncfusion_Maui_Barcode_BarcodeTextStyle_TextColor) — Gets or sets the text color. +- [`FontAttributes`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.BarcodeTextStyle.html#Syncfusion_Maui_Barcode_BarcodeTextStyle_FontAttributes) - Gets or sets the font attributes. +- [`FontFamily`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.BarcodeTextStyle.html#Syncfusion_Maui_Barcode_BarcodeTextStyle_FontFamily) - Gets or sets the font family. +- [`FontSize`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.BarcodeTextStyle.html#Syncfusion_Maui_Barcode_BarcodeTextStyle_FontSize) - Gets or sets the font size. +- [`TextColor`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Barcode.BarcodeTextStyle.html#Syncfusion_Maui_Barcode_BarcodeTextStyle_TextColor) - Gets or sets the text color. {% tabs %} diff --git a/chart-sdk/maui/maps/tile-layer.md b/chart-sdk/maui/maps/tile-layer.md index 0347dcdb1..ba5d5a7a7 100644 --- a/chart-sdk/maui/maps/tile-layer.md +++ b/chart-sdk/maui/maps/tile-layer.md @@ -21,7 +21,7 @@ To learn more about the .NET MAUI Maps tile layer, you can check the following v The [`MapTileLayer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapTileLayer.html) needs to be added to the [`Layer`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.SfMaps.html#Syncfusion_Maui_Maps_SfMaps_Layer) in [`SfMaps`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.SfMaps.html). The URL of the providers must be set in the [`MapTileLayer.UrlTemplate`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapTileLayer.html#Syncfusion_Maui_Maps_MapTileLayer_UrlTemplate) property. -The [`UrlTemplate`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapTileLayer.html#Syncfusion_Maui_Maps_MapTileLayer_UrlTemplate) property accepts the URL in [`WMTS`](https://en.wikipedia.org/wiki/Web_Map_Tile_Service) format i.e. {z} — zoom level, {x} and {y} — tile coordinates. This URL might vary slightly depending on the providers. The formats can be, +The [`UrlTemplate`](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Maps.MapTileLayer.html#Syncfusion_Maui_Maps_MapTileLayer_UrlTemplate) property accepts the URL in [`WMTS`](https://en.wikipedia.org/wiki/Web_Map_Tile_Service) format i.e. {z} - zoom level, {x} and {y} - tile coordinates. This URL might vary slightly depending on the providers. The formats can be, https://example_provider/{z}/{x}/{y}.png, https://example_provider/z={z}/x={x}/y={y}.png, https://example_provider/z={z}/x={x}/y={y}.png?key=subscription_key, etc.