Files
radzen-blazor/Radzen.Blazor/Interpolation.cs
Maxim Becker 27859cf183 Add interpolation in RadzenLineSeries to make rendering more generic (#722)
* Add interpolation in RadzenLineSeries to make rendering of them more generic

* Added new lines at end of new files

* Add interpolation in RadzenAreaSeries too

* Revert the Are and Line chart demos. Add a new one.

Co-authored-by: Atanas Korchev <akorchev@gmail.com>
2022-11-29 16:15:51 +02:00

23 lines
626 B
C#

namespace Radzen.Blazor
{
/// <summary>
/// Specifies the interpolation mode of lines between data points. Used by <see cref="RadzenAreaSeries{TItem}"/> and <see cref="RadzenLineSeries{TItem}"/>.
/// </summary>
public enum Interpolation
{
/// <summary>
/// Points are connected by a straight line.
/// </summary>
Line,
/// <summary>
/// Points are connected by a smooth curve.
/// </summary>
Spline,
/// <summary>
/// Points are connected by horizontal and vertical lines only.
/// </summary>
Step
}
}