Module Values_0.AxisDataOptionsSource

The data options for an axis. This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

Sourcetype nonrec t = {
  1. numericAxisOptions : NumericAxisOptions.t option;
    (*

    The options for an axis with a numeric field.

    *)
  2. dateAxisOptions : DateAxisOptions.t option;
    (*

    The options for an axis with a date field.

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