Class PointRenderEventArgs
Specifies the event arguments available on chart point render.
Inheritance
System.Object
Syncfusion.Blazor.Charts.BaseEventArgs
PointRenderEventArgs
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class PointRenderEventArgs : BaseEventArgs
Properties
Border
Defines the current point border.
Declaration
public ChartEventBorder Border { get; set; }
Property Value
Type |
---|
ChartEventBorder |
Fill
Defines the current point fill color.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Height
Defines the current point height.
Declaration
public double Height { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Point
Defines the current point.
Declaration
public Point Point { get; }
Property Value
Type | Description |
---|---|
Point | A point object that represents the current point. |
Series
Defines the current series of the point.
Declaration
public ChartSeries Series { get; }
Property Value
Type | Description |
---|---|
ChartSeries | A ChartSeries object that represents the current chart series of point. |
Shape
Defines the current point marker shape.
Declaration
public ChartShape Shape { get; set; }
Property Value
Type |
---|
ChartShape |
Width
Defines the current point width.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |