Interface IChartAxisLabelModel
Interface that needs to be implemented to display custom axis labels.
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Base.dll
Syntax
public interface IChartAxisLabelModel
Properties
Count
Returns the number of labels.
Declaration
int Count { get; }
Property Value
Type |
---|
System.Int32 |
Methods
GetLabelAt(Int32)
Returns the label at the specified index.
Declaration
ChartAxisLabel GetLabelAt(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | Index value to look for. |
Returns
Type | Description |
---|---|
ChartAxisLabel | ChartAxisLabel to be used as label. |