Module Values_0.AxisDisplayRangeSource

The range setup of a numeric axis display range. This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

Sourcetype nonrec t = {
  1. minMax : AxisDisplayMinMaxRange.t option;
    (*

    The minimum and maximum setup of an axis display range.

    *)
  2. dataDriven : AxisDisplayDataDrivenRange.t option;
    (*

    The data-driven setup of an axis display range.

    *)
}
Sourceval make : ?minMax:??? -> ?dataDriven:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Double of Double.t ]) list ]) 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