Module Values_0.ReferenceLineStyleConfigurationSource

The style configuration of the reference line.

Sourcetype nonrec t = {
  1. pattern : ReferenceLinePatternType.t option;
    (*

    The pattern type of the line style. Choose one of the following options: SOLID DASHED DOTTED

    *)
  2. color : HexColor.t option;
    (*

    The hex color of the reference line.

    *)
}
Sourceval make : ?pattern:??? -> ?color:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of HexColor.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t