XPlot


Line

Constructors

ConstructorDescription
new()
Signature: unit -> Line

Instance members

Instance memberDescription
color()
Signature: unit -> obj

Sets the color of the line object. If linked within 'marker', sets the color of the marker's bordering line. If linked within, 'contours', sets the color of the contour lines.

color()
Signature: unit -> unit

Sets the color of the line object. If linked within 'marker', sets the color of the marker's bordering line. If linked within, 'contours', sets the color of the contour lines.

dash()
Signature: unit -> string

Sets the drawing style of the lines segments in this trace.

dash()
Signature: unit -> unit

Sets the drawing style of the lines segments in this trace.

opacity()
Signature: unit -> float

Sets the opacity, or transparency, of the entire object, also known as the alpha channel of colors. If the object's color is given in terms of 'rgba' color model, 'opacity' is redundant.

opacity()
Signature: unit -> unit

Sets the opacity, or transparency, of the entire object, also known as the alpha channel of colors. If the object's color is given in terms of 'rgba' color model, 'opacity' is redundant.

outliercolor()
Signature: unit -> string

For box plots only. Has an effect only if 'boxpoints' is set to 'suspectedoutliers'. Sets the color of the bordering line of the outlier points.

outliercolor()
Signature: unit -> unit

For box plots only. Has an effect only if 'boxpoints' is set to 'suspectedoutliers'. Sets the color of the bordering line of the outlier points.

outlierwidth()
Signature: unit -> string

For box plots only. Has an effect only if 'boxpoints' is set to 'suspectedoutliers'. Sets the width in pixels of bordering line of the outlier points.

outlierwidth()
Signature: unit -> unit

For box plots only. Has an effect only if 'boxpoints' is set to 'suspectedoutliers'. Sets the width in pixels of bordering line of the outlier points.

shape()
Signature: unit -> string

Choose the line shape between each coordinate pair in this trace. Applies only to scatter traces. The default value is 'linear'. If set to 'spline', then the lines are drawn using spline interpolation between the coordinate pairs. The remaining available values correspond to step-wise line shapes.

shape()
Signature: unit -> unit

Choose the line shape between each coordinate pair in this trace. Applies only to scatter traces. The default value is 'linear'. If set to 'spline', then the lines are drawn using spline interpolation between the coordinate pairs. The remaining available values correspond to step-wise line shapes.

ShouldSerializecolor()
Signature: unit -> bool
ShouldSerializedash()
Signature: unit -> bool
ShouldSerializeopacity()
Signature: unit -> bool
ShouldSerializeoutliercolor()
Signature: unit -> bool
ShouldSerializeoutlierwidth()
Signature: unit -> bool
ShouldSerializeshape()
Signature: unit -> bool
ShouldSerializesmoothing()
Signature: unit -> bool
ShouldSerializewidth()
Signature: unit -> bool
smoothing()
Signature: unit -> float

Sets the amount of smoothing applied to the lines segments in this trace. Applies only to contour traces and scatter traces if 'shape' is set to 'spline'. The default value is 1. If 'smoothing' is set to 0, then no smoothing is applied. Set 'smoothing' to a value less (greater) than 1 for a less (more) pronounced line smoothing.

smoothing()
Signature: unit -> unit

Sets the amount of smoothing applied to the lines segments in this trace. Applies only to contour traces and scatter traces if 'shape' is set to 'spline'. The default value is 1. If 'smoothing' is set to 0, then no smoothing is applied. Set 'smoothing' to a value less (greater) than 1 for a less (more) pronounced line smoothing.

width()
Signature: unit -> obj

Sets the width (in pixels) of the line segments in question.

width()
Signature: unit -> unit

Sets the width (in pixels) of the line segments in question.

Fork me on GitHub