AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.5" />

 RadialGradient

public sealed class RadialGradient : IImageSource
Represents a radial gradient: http://dev.w3.org/csswg/css-images-3/#radial-gradients
public enum SizeMode

Enumeration with special size modes.

public bool IsCircle { get; }

Gets if the gradient should always be displayed as a circle.

public bool IsRepeating { get; }

Gets if the gradient is repeating.

public Length MajorRadius { get; }

Gets the horizontal radius.

public Length MinorRadius { get; }

Gets the vertical radius.

public SizeMode Mode { get; }

Gets the special size mode of the gradient.

public Point Position { get; }

Gets the position of the radial gradient.

public IEnumerable<GradientStop> Stops { get; }

Gets an enumeration of all stops.

public RadialGradient(bool circle, Point pt, Length width, Length height, SizeMode sizeMode, GradientStop[] stops, bool repeating = false)

Creates a new radial gradient.