mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
* 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>
23 lines
626 B
C#
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
|
|
}
|
|
}
|