Module Values_0.HistogramBinOptionsSource

The options that determine the presentation of histogram bins.

Sourcetype nonrec t = {
  1. selectedBinType : HistogramBinType.t option;
    (*

    The options that determine the selected bin type.

    *)
  2. binCount : BinCountOptions.t option;
    (*

    The options that determine the bin count of a histogram.

    *)
  3. binWidth : BinWidthOptions.t option;
    (*

    The options that determine the bin width of a histogram.

    *)
  4. startValue : Double.t option;
    (*

    The options that determine the bin start value.

    *)
}
Sourceval make : ?selectedBinType:??? -> ?binCount:??? -> ?binWidth:??? -> ?startValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `Structure of (string * [> `Double of BinWidthValue.t | `Integer of BinCountValue.t | `Long of BinCountLimit.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