Skip to content
This repository was archived by the owner on Nov 28, 2024. It is now read-only.

Commit 8c92b2f

Browse files
committed
Elaborate on property description.
1 parent 6cf85fb commit 8c92b2f

File tree

8 files changed

+16
-8
lines changed

8 files changed

+16
-8
lines changed

Controls/Chart/Chart.UWP/Visualization/CartesianChart/Series/Categorical/SplineAreaSeries.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ public SplineAreaSeries()
2626

2727
/// <summary>
2828
/// Gets or sets the <see cref="SplineTension"/> that is used to determine the tension of the additional spline points.
29-
/// The default value is 0.5d.
29+
/// The default value is 0.5d. The tension works with relative values between 0 and 1.
30+
/// Values outside this range will be coerced internally.
3031
/// </summary>
3132
public double SplineTension
3233
{

Controls/Chart/Chart.UWP/Visualization/CartesianChart/Series/Categorical/SplineSeries.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ public SplineSeries()
2626

2727
/// <summary>
2828
/// Gets or sets the <see cref="SplineTension"/> that is used to determine the tension of the additional spline points.
29-
/// The default value is 0.5d.
29+
/// The default value is 0.5d. The tension works with relative values between 0 and 1.
30+
/// Values outside this range will be coerced internally.
3031
/// </summary>
3132
public double SplineTension
3233
{

Controls/Chart/Chart.UWP/Visualization/CartesianChart/Series/Scatter/ScatterSplineAreaSeries.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ public ScatterSplineAreaSeries()
2727

2828
/// <summary>
2929
/// Gets or sets the <see cref="SplineTension"/> that is used to determine the tension of the additional spline points.
30-
/// The default value is 0.5d.
30+
/// The default value is 0.5d. The tension works with relative values between 0 and 1.
31+
/// Values outside this range will be coerced internally.
3132
/// </summary>
3233
public double SplineTension
3334
{

Controls/Chart/Chart.UWP/Visualization/CartesianChart/Series/Scatter/ScatterSplineSeries.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ public ScatterSplineSeries()
2727

2828
/// <summary>
2929
/// Gets or sets the <see cref="SplineTension"/> that is used to determine the tension of the additional spline points.
30-
/// The default value is 0.5d.
30+
/// The default value is 0.5d. The tension works with relative values between 0 and 1.
31+
/// Values outside this range will be coerced internally.
3132
/// </summary>
3233
public double SplineTension
3334
{

Controls/Chart/Chart.UWP/Visualization/PolarChart/Series/PolarSplineAreaSeries.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ public PolarSplineAreaSeries()
2929

3030
/// <summary>
3131
/// Gets or sets the <see cref="SplineTension"/> that is used to determine the tension of the additional spline points.
32-
/// The default value is 0.5d.
32+
/// The default value is 0.5d. The tension works with relative values between 0 and 1.
33+
/// Values outside this range will be coerced internally.
3334
/// </summary>
3435
public double SplineTension
3536
{

Controls/Chart/Chart.UWP/Visualization/PolarChart/Series/PolarSplineSeries.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ public PolarSplineSeries()
2929

3030
/// <summary>
3131
/// Gets or sets the <see cref="SplineTension"/> that is used to determine the tension of the additional spline points.
32-
/// The default value is 0.5d.
32+
/// The default value is 0.5d. The tension works with relative values between 0 and 1.
33+
/// Values outside this range will be coerced internally.
3334
/// </summary>
3435
public double SplineTension
3536
{

Controls/Chart/Chart.UWP/Visualization/PolarChart/Series/RadarSplineAreaSeries.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ public RadarSplineAreaSeries()
2626

2727
/// <summary>
2828
/// Gets or sets the <see cref="SplineTension"/> that is used to determine the tension of the additional spline points.
29-
/// The default value is 0.5d.
29+
/// The default value is 0.5d. The tension works with relative values between 0 and 1.
30+
/// Values outside this range will be coerced internally.
3031
/// </summary>
3132
public double SplineTension
3233
{

Controls/Chart/Chart.UWP/Visualization/PolarChart/Series/RadarSplineSeries.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ public RadarSplineSeries()
2626

2727
/// <summary>
2828
/// Gets or sets the <see cref="SplineTension"/> that is used to determine the tension of the additional spline points.
29-
/// The default value is 0.5d.
29+
/// The default value is 0.5d. The tension works with relative values between 0 and 1.
30+
/// Values outside this range will be coerced internally.
3031
/// </summary>
3132
public double SplineTension
3233
{

0 commit comments

Comments
 (0)