Class ISmithchartAxisLabelRenderEventArgs
Specifies the Axis Label Render Event arguments.
Inheritance
System.Object
ISmithchartAxisLabelRenderEventArgs
Implements
System.IEquatable<ISmithchartAxisLabelRenderEventArgs>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ISmithchartAxisLabelRenderEventArgs : Object, IEquatable<ISmithchartAxisLabelRenderEventArgs>
Constructors
ISmithchartAxisLabelRenderEventArgs()
Declaration
public ISmithchartAxisLabelRenderEventArgs()
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 |
Text
Defines the current axis label text
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
X
Defines the current axis label x location
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Y
Defines the current axis label y location
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(ISmithchartAxisLabelRenderEventArgs)
Declaration
public bool Equals(ISmithchartAxisLabelRenderEventArgs iSmithchartAxisLabelRenderEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ISmithchartAxisLabelRenderEventArgs | iSmithchartAxisLabelRenderEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>