Class SymbolOptions
Defines the composite symbol options for chart marker rendering, holding shape-specific option objects for path, ellipse, and image shapes, along with a ShapeName discriminator.
Inherited Members
Namespace: Syncfusion.Blazor.DataVizCommon
Assembly: Syncfusion.Blazor.dll
Syntax
public class SymbolOptions
Constructors
SymbolOptions()
Declaration
public SymbolOptions()
Properties
EllipseOption
Gets or sets the EllipseOptions used when the symbol shape is ellipse.
Declaration
public EllipseOptions EllipseOption { get; set; }
Property Value
| Type |
|---|
| EllipseOptions |
ImageOption
Gets or sets the ImageOptions used when the symbol shape is image.
Declaration
public ImageOptions ImageOption { get; set; }
Property Value
| Type |
|---|
| ImageOptions |
PathOption
Gets or sets the PathOptions used when the symbol shape is path.
Declaration
public PathOptions PathOption { get; set; }
Property Value
| Type |
|---|
| PathOptions |
ShapeName
Gets or sets the active shape type that determines which option object (PathOption, EllipseOption, or ImageOption) is used for rendering.
Declaration
public ShapeName ShapeName { get; set; }
Property Value
| Type |
|---|
| ShapeName |