HtmlForgeX

API Reference

Class

ApexStrokeOptions

Namespace HtmlForgeX
Assembly HtmlForgeX

Represents stroke configuration options for ApexCharts.

Inheritance

  • Object
  • ApexStrokeOptions

Constructors

public ApexStrokeOptions() #

Methods

public ApexStrokeOptions SetColors(params String[] colors) #
Returns: ApexStrokeOptions

Sets the stroke colors.

Parameters

colors System.String[] requiredposition: 0
public ApexStrokeOptions SetCurve(ApexCurve curve) #
Returns: ApexStrokeOptions

Sets the curve type.

Parameters

curve HtmlForgeX.ApexCurve requiredposition: 0
public ApexStrokeOptions SetDashArray(Object dashArray) #
Returns: ApexStrokeOptions

Sets the dash array (single value or array).

Parameters

dashArray System.Object requiredposition: 0
public ApexStrokeOptions SetLineCap(ApexLineCap lineCap) #
Returns: ApexStrokeOptions

Sets the line cap.

Parameters

lineCap HtmlForgeX.ApexLineCap requiredposition: 0
public ApexStrokeOptions SetWidth(Object width) #
Returns: ApexStrokeOptions

Sets the stroke width (single value or array).

Parameters

width System.Object requiredposition: 0
public ApexStrokeOptions ShowStroke(Boolean show) #
Returns: ApexStrokeOptions

Shows or hides the stroke.

Parameters

show System.Boolean requiredposition: 0

Properties

public Nullable<Boolean> Show { get; set; } #
JsonPropertyName("show")

Gets or sets whether to show stroke.

public Nullable<ApexCurve> Curve { get; set; } #
JsonPropertyName("curve") JsonConverter(typeof(ApexEnumConverter<ApexCurve>))

Gets or sets the curve type.

public Nullable<ApexLineCap> LineCap { get; set; } #
JsonPropertyName("lineCap") JsonConverter(typeof(ApexEnumConverter<ApexLineCap>))

Gets or sets the line cap.

public String[] Colors { get; set; } #
JsonPropertyName("colors")

Gets or sets the stroke colors.

public Object Width { get; set; } #
JsonPropertyName("width")

Gets or sets the stroke width.

public Object DashArray { get; set; } #
JsonPropertyName("dashArray")

Gets or sets the dash array.