Dimension
public struct Dimension : Encodable
Undocumented
-
Determines whether or not this dimension is shown on the graph.
Note that even visible false dimension contribute to the default grid generate by this splom trace.
Declaration
Swift
public var visible: Bool? -
Sets the label corresponding to this splom dimension.
Declaration
Swift
public var label: String? -
Sets the dimension values to be plotted.
Declaration
Swift
public var values: [Double]? -
Undocumented
See moreDeclaration
Swift
public struct Axis : Encodable -
Undocumented
Declaration
Swift
public var axis: Axis? -
When used in a template, named items are created in the output figure in addition to any items the figure already has in this array.
You can modify these items in the output figure by making your own item with
templateitemnamematching thisnamealongside your modifications (includingvisible: falseorenabled: falseto hide it). Has no effect outside of a template.Declaration
Swift
public var name: String? -
Used to refer to a named item in this array in the template.
Named items from the template will be created even without a matching item in the input figure, but you can modify one by making an item with
templateitemnamematching itsname, alongside your modifications (includingvisible: falseorenabled: falseto hide it). If there is no template or no matching item, this item will be hidden unless you explicitly show it withvisible: true.Declaration
Swift
public var templateItemName: String? -
Creates
Dimensionobject with specified properties.Declaration
Swift
public init(visible: Bool? = nil, label: String? = nil, values: [Double]? = nil, axis: Axis? = nil, name: String? = nil, templateItemName: String? = nil)Parameters
visibleDetermines whether or not this dimension is shown on the graph.
labelSets the label corresponding to this splom dimension.
valuesSets the dimension values to be plotted.
axisnameWhen used in a template, named items are created in the output figure in addition to any items the figure already has in this array.
templateItemNameUsed to refer to a named item in this array in the template.
View on GitHub
Install in Dash
Dimension Structure Reference