Module Values_0.LineChartLineStyleSettingsSource

Line styles options for a line series in LineChartVisual.

Sourcetype nonrec t = {
  1. lineVisibility : Visibility.t option;
    (*

    Configuration option that determines whether to show the line for the series.

    *)
  2. lineInterpolation : LineInterpolation.t option;
    (*

    Interpolation style for line series. LINEAR: Show as default, linear style. SMOOTH: Show as a smooth curve. STEPPED: Show steps in line.

    *)
  3. lineStyle : LineChartLineStyle.t option;
    (*

    Line style for line series. SOLID: Show as a solid line. DOTTED: Show as a dotted line. DASHED: Show as a dashed line.

    *)
  4. lineWidth : PixelLength.t option;
    (*

    Width that determines the line thickness.

    *)
}
Sourceval make : ?lineVisibility:??? -> ?lineInterpolation:??? -> ?lineStyle:??? -> ?lineWidth:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PixelLength.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