SymbolicMarker

public struct SymbolicMarker : Encodable

Undocumented

  • Sets the color of the outlier sample points.

    Declaration

    Swift

    public var outlierColor: Color?
  • Sets the marker symbol type.

    Adding 100 is equivalent to appending -open to a symbol name. Adding 200 is equivalent to appending -dot to a symbol name. Adding 300 is equivalent to appending -open-dot or dot-open to a symbol name.

    Declaration

    Swift

    public var symbol: Symbol?
  • Sets the marker opacity.

    Declaration

    Swift

    public var opacity: Double?
  • Sets the marker size (in px).

    Declaration

    Swift

    public var size: Double?
  • Sets themarkercolor.

    It accepts either a specific color or an array of numbers that are mapped to the colorscale relative to the max and min values of the array or relative to marker.cmin and marker.cmax if set.

    Declaration

    Swift

    public var color: Color?
  • Undocumented

    See more

    Declaration

    Swift

    public struct Line : Encodable
  • Undocumented

    Declaration

    Swift

    public var line: Line?
  • Creates SymbolicMarker object with specified properties.

    Declaration

    Swift

    public init(outlierColor: Color? = nil, symbol: Symbol? = nil, opacity: Double? = nil, size:
            Double? = nil, color: Color? = nil, line: Line? = nil)

    Parameters

    outlierColor

    Sets the color of the outlier sample points.

    symbol

    Sets the marker symbol type.

    opacity

    Sets the marker opacity.

    size

    Sets the marker size (in px).

    color

    Sets themarkercolor.

    line