API Reference
ApexPlotOptions
Container for per-chart-type plot options.
Inheritance
- Object
- ApexPlotOptions
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
Accepted by parameters
- Method ApexCharts.PlotOptions
Constructors
public ApexPlotOptions() #Methods
public ApexPlotOptions BarOptions(Action<ApexBarOptions> configure) #ApexPlotOptionsConfigures bar-specific options.
Parameters
- configure System.Action{HtmlForgeX.ApexBarOptions}
- Delegate used to configure bar options.
Returns
The current ApexPlotOptions instance.
public ApexPlotOptions BoxPlotOptions(Action<ApexBoxPlotOptions> configure) #ApexPlotOptionsConfigures boxplot options.
Parameters
- configure System.Action{HtmlForgeX.ApexBoxPlotOptions}
- Delegate used to configure boxplot options.
Returns
The current ApexPlotOptions instance.
public ApexPlotOptions HeatmapOptions(Action<ApexHeatmapOptions> configure) #ApexPlotOptionsConfigures heatmap options via a delegate.
Parameters
- configure System.Action{HtmlForgeX.ApexHeatmapOptions}
- Delegate used to configure heatmap options.
Returns
The current ApexPlotOptions instance.
public ApexPlotOptions PieOptions(Action<ApexPieOptions> configure) #ApexPlotOptionsConfigures pie-specific options.
Parameters
- configure System.Action{HtmlForgeX.ApexPieOptions}
- Delegate used to configure pie options.
Returns
The current ApexPlotOptions instance.
public ApexPlotOptions RadarOptions(Action<ApexRadarOptions> configure) #ApexPlotOptionsConfigures radar options.
Parameters
- configure System.Action{HtmlForgeX.ApexRadarOptions}
- Delegate used to configure radar options.
Returns
The current ApexPlotOptions instance.
public ApexPlotOptions RadialBarOptions(Action<ApexRadialBarOptions> configure) #ApexPlotOptionsConfigures radial bar options.
Parameters
- configure System.Action{HtmlForgeX.ApexRadialBarOptions}
- Delegate used to configure radial bar options.
Returns
The current ApexPlotOptions instance.
Inherited Methods
Properties
public ApexHeatmapOptions Heatmap { get; set; } #JsonPropertyName("heatmap") JsonIgnore(Condition = 3)Gets or sets heatmap specific configuration.
public ApexBarOptions Bar { get; set; } #JsonPropertyName("bar") JsonIgnore(Condition = 3)Gets or sets bar specific configuration.
public ApexPieOptions Pie { get; set; } #JsonPropertyName("pie") JsonIgnore(Condition = 3)Gets or sets pie specific configuration.
public ApexRadialBarOptions RadialBar { get; set; } #JsonPropertyName("radialBar") JsonIgnore(Condition = 3)Gets or sets radial bar specific configuration.
public ApexRadarOptions Radar { get; set; } #JsonPropertyName("radar") JsonIgnore(Condition = 3)Gets or sets radar specific configuration.
public ApexBoxPlotOptions BoxPlot { get; set; } #JsonPropertyName("boxPlot") JsonIgnore(Condition = 3)Gets or sets boxplot specific configuration.