[]
Represents the 'radialGradient' element.
public class SvgRadialGradientElement : SvgGradientElement
Initializes a new instance of the SvgRadialGradientElement class.
public SvgRadialGradientElement()
Gets the SVG name of SvgRadialGradientElement.
public const string SvgName = "radialGradient"
Gets or sets the horizontal center coordinate of the end circle for the radial gradient.
public SvgLength? CenterX { get; set; }
Gets or sets the vertical center coordinate of the end circle for the radial gradient.
public SvgLength? CenterY { get; set; }
Gets the SVG name of the current element.
public override string ElementName { get; }
Gets or sets the radius of the start circle for the radial gradient.
public SvgLength? FocalRadius { get; set; }
Gets or sets the horizontal center coordinate of the start circle for the radial gradient.
public SvgLength? FocalX { get; set; }
Gets or sets the vertical center coordinate of the start circle for the radial gradient.
public SvgLength? FocalY { get; set; }
Gets or sets the radius of the end circle for the radial gradient.
public SvgLength? Radius { get; set; }