API Reference
Class
ApexAxisOptions
Represents axis configuration options for ApexCharts.
Inheritance
- Object
- ApexAxisOptions
Constructors
public ApexAxisOptions() #Methods
public ApexAxisOptions AxisLabels(Action<ApexAxisLabels> configure) #Returns:
ApexAxisOptionsConfigures the axis labels.
Parameters
- configure System.Action{HtmlForgeX.ApexAxisLabels}
public ApexAxisOptions AxisTitle(Action<ApexAxisTitle> configure) #Returns:
ApexAxisOptionsConfigures the axis title.
Parameters
- configure System.Action{HtmlForgeX.ApexAxisTitle}
public ApexAxisOptions AxisType(ApexAxisType type) #Returns:
ApexAxisOptionsSets the axis type.
Parameters
- type HtmlForgeX.ApexAxisType
public ApexAxisOptions Range(Double min, Double max) #Returns:
ApexAxisOptionsSets the minimum and maximum values.
Parameters
- min System.Double
- max System.Double
public ApexAxisOptions SetCategories(params String[] categories) #Returns:
ApexAxisOptionsSets the categories.
Parameters
- categories System.String[]
public ApexAxisOptions ShowAxis(Boolean show) #Returns:
ApexAxisOptionsSets whether to show the axis.
Parameters
- show System.Boolean
Inherited Methods
Properties
public Nullable<Boolean> Show { get; set; } #JsonPropertyName("show")Gets or sets whether to show the axis.
public Nullable<ApexAxisType> Type { get; set; } #JsonPropertyName("type") JsonConverter(typeof(ApexEnumConverter<ApexAxisType>))Gets or sets the axis type.
public String[] Categories { get; set; } #JsonPropertyName("categories")Gets or sets the categories for the axis.
public ApexAxisTitle Title { get; set; } #JsonPropertyName("title")Gets or sets the title configuration.
public ApexAxisLabels Labels { get; set; } #JsonPropertyName("labels")Gets or sets the labels configuration.
public Nullable<Int32> DecimalsInFloat { get; set; } #JsonPropertyName("decimalsInFloat") JsonIgnore(Condition = 3)Gets or sets the number of decimals to show for float values.