Module Values_0.MissingDataConfigurationSource

The configuration options that determine how missing data is treated during the rendering of a line chart.

Sourcetype nonrec t = {
  1. treatmentOption : MissingDataTreatmentOption.t option;
    (*

    The treatment option that determines how missing data should be rendered. Choose from the following options: INTERPOLATE: Interpolate missing values between the prior and the next known value. SHOW_AS_ZERO: Show missing values as the value 0. SHOW_AS_BLANK: Display a blank space when rendering missing data.

    *)
}
Sourceval make : ?treatmentOption:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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