Skip to content

Commit 32a1442

Browse files
Merge pull request #3814 from syncfusion-content/MAUI-990769-Need-to-Update-the-API-links
MAUI-990769-[Others] Updated the API links for the empty point and date time category axis.
2 parents d7258a2 + e0b2887 commit 32a1442

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

MAUI/Cartesian-Charts/Axis/Types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ this.Content = chart;
420420

421421
## DateTimeCategoryAxis
422422

423-
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.
423+
The [DateTimeCategoryAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeCategoryAxis.html) 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.
424424

425425
{% tabs %}
426426

@@ -455,7 +455,7 @@ this.Content = chart;
455455

456456
### Interval
457457

458-
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.
458+
In [DateTimeCategoryAxis](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeCategoryAxis.html), 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](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeCategoryAxis.html#Syncfusion_Maui_Charts_DateTimeCategoryAxis_Interval) as 5 and [IntervalType](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeCategoryAxis.html#Syncfusion_Maui_Charts_DateTimeCategoryAxis_IntervalType) as [Days](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.DateTimeIntervalType.html#Syncfusion_Maui_Charts_DateTimeIntervalType_Days) will consider 5 days as an interval.
459459
{% tabs %}
460460

461461
{% highlight xaml %}

MAUI/Cartesian-Charts/EmptyPoints.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,20 @@ ProductSales.Add(new Model() { Product = "Books", Sales = 50 });
2929

3030
{% endhighlight %}
3131

32-
By default, the `EmptyPointMode` property is `None`. So the empty points will not be rendered as shown in the below.
32+
By default, the [EmptyPointMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointMode.html) property is [None](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointMode.html#Syncfusion_Maui_Charts_EmptyPointMode_None). So the empty points will not be rendered as shown in the below.
3333

3434
![Empty Points in MAUI Chart](EmptyPoints_images/EmptyPoints_Default.png)
3535

3636
## Empty Point Mode
37-
The `EmptyPointMode` property of series specifies how empty points should be handled.
37+
The [EmptyPointMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointMode.html) property of series specifies how empty points should be handled.
3838

3939
This property provides the following options.
4040

4141
* **None** - Empty points are not rendered. This is the default behavior.
4242
* **Zero** - Empty points will be replaced with zero.
4343
* **Average** - Empty points will be replaced with the average value of the surrounding data points.
4444

45-
The following code example shows the `EmptyPointMode` as `Zero`.
45+
The following code example shows the [EmptyPointMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointMode.html) as [Zero](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointMode.html#Syncfusion_Maui_Charts_EmptyPointMode_Zero).
4646

4747
{% tabs %}
4848

@@ -83,7 +83,7 @@ this.Content = chart;
8383

8484
![EmptyPoint Mode Zero in MAUI Chart](EmptyPoints_images/EmptyPoints_Mode_Zero.png)
8585

86-
The following code example shows the `EmptyPointMode` as `Average`.
86+
The following code example shows the [EmptyPointMode](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointMode.html) as [Average](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointMode.html#Syncfusion_Maui_Charts_EmptyPointMode_Average).
8787

8888
{% tabs %}
8989

@@ -125,11 +125,11 @@ this.Content = chart;
125125
![EmptyPoint Mode Average in MAUI Chart](EmptyPoints_images/EmptyPoints_Mode_Average.png)
126126

127127
## Empty Point Customization
128-
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`.
128+
The [EmptyPointSettings](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointSettings.html) 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](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointSettings.html).
129129

130-
* `Fill` - Gets or sets the fill color for the empty points.
131-
* `Stroke` - Gets or sets the stroke color for empty points.
132-
* `StrokeWidth` - Gets or sets the stroke thickness for empty points.
130+
* [Fill](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointSettings.html#Syncfusion_Maui_Charts_EmptyPointSettings_Fill) - Gets or sets the fill color for the empty points.
131+
* [Stroke](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointSettings.html#Syncfusion_Maui_Charts_EmptyPointSettings_Stroke) - Gets or sets the stroke color for empty points.
132+
* [StrokeWidth](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Charts.EmptyPointSettings.html#Syncfusion_Maui_Charts_EmptyPointSettings_StrokeWidth) - Gets or sets the stroke thickness for empty points.
133133

134134
{% tabs %}
135135

0 commit comments

Comments
 (0)