Enum InterpolationOption
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
Indicates the technique used to smooth lines connecting values in a MudChart.
public enum InterpolationOption
- Extension Methods
Fields
EndSlope = 1
Lines are smoothed to pass through each data point as an end-point spline.
NaturalSpline = 0
Lines are smoothed to pass through each data point as a natural spline.
Periodic = 2
Lines are smoothed to pass through each data point as a periodic spline.
Straight = 3
Lines are straight from one point to the next.