Module GapiSheetsV4Model.ChartHistogramRuleSource

Sourcetype t = {
  1. minValue : float;
    (*

    The minimum value at which items are placed into buckets. Values that are less than the minimum are grouped into a single bucket. If omitted, it is determined by the minimum item value.

    *)
  2. maxValue : float;
    (*

    The maximum value at which items are placed into buckets. Values greater than the maximum are grouped into a single bucket. If omitted, it is determined by the maximum item value.

    *)
  3. intervalSize : float;
    (*

    The size of the buckets that are created. Must be positive.

    *)
}
Sourceval minValue : (t, float) GapiLens.t
Sourceval maxValue : (t, float) GapiLens.t
Sourceval intervalSize : (t, float) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t