Class ISmithchartTextRenderEventArgs
Specifies the Text Render Event arguments.
Inheritance
System.Object
ISmithchartTextRenderEventArgs
Implements
System.IEquatable<ISmithchartTextRenderEventArgs>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ISmithchartTextRenderEventArgs : Object, IEquatable<ISmithchartTextRenderEventArgs>
Constructors
ISmithchartTextRenderEventArgs()
Declaration
public ISmithchartTextRenderEventArgs()
Properties
Cancel
Defines the event cancel status
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Defines the name of the event
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PointIndex
Defines the current datalabel pointIndex
Declaration
public double PointIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
SeriesIndex
Defines the current datalabel seriesIndex
Declaration
public double SeriesIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Text
Defines the current datalabel text
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
X
Defines the current datalabel text x location
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Y
Defines the current datalabel text y location
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(ISmithchartTextRenderEventArgs)
Declaration
public bool Equals(ISmithchartTextRenderEventArgs iSmithchartTextRenderEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ISmithchartTextRenderEventArgs | iSmithchartTextRenderEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>