Module Values_0.AxisLinearScaleSource

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

Sourcetype nonrec t = {
  1. stepCount : Integer.t option;
    (*

    The step count setup of a linear axis.

    *)
  2. stepSize : Double.t option;
    (*

    The step size setup of a linear axis.

    *)
}
Sourceval make : ?stepCount:??? -> ?stepSize:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.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