RangeSlider
public struct RangeSlider : Encodable
Undocumented
-
Sets the background color of the range slider.
Declaration
Swift
public var backgroundColor: Color? -
Sets the border color of the range slider.
Declaration
Swift
public var borderColor: Color? -
Sets the border width of the range slider.
Declaration
Swift
public var borderWidth: Int? -
Determines whether or not the range slider range is computed in relation to the input data.
If
rangeis provided, thenautorangeis set to false.Declaration
Swift
public var autoRange: Bool? -
Sets the range of the range slider.
If not set, defaults to the full xaxis range. If the axis
typeis log, then you must take the log of your desired range. If the axistypeis date, it should be date strings, like date data, though Date objects and unix milliseconds will be accepted and converted to strings. If the axistypeis category, it should be numbers, using the scale where each category is assigned a serial number from zero in the order it appears.Declaration
Swift
public var range: InfoArray? -
The height of the range slider as a fraction of the total plot area height.
Declaration
Swift
public var thickness: Double? -
Determines whether or not the range slider will be visible.
If visible, perpendicular axes will be set to
fixedrangeDeclaration
Swift
public var visible: Bool? -
Undocumented
See moreDeclaration
Swift
public struct YAxis : Encodable -
Undocumented
Declaration
Swift
public var yAxis: YAxis? -
Creates
RangeSliderobject with specified properties.Declaration
Parameters
backgroundColorSets the background color of the range slider.
borderColorSets the border color of the range slider.
borderWidthSets the border width of the range slider.
autoRangeDetermines whether or not the range slider range is computed in relation to the input data.
rangeSets the range of the range slider.
thicknessThe height of the range slider as a fraction of the total plot area height.
visibleDetermines whether or not the range slider will be visible.
yAxis
View on GitHub
Install in Dash
RangeSlider Structure Reference