Show / Hide Table of Contents

Class HistogramRule

Inheritance
System.Object
HistogramRule
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class HistogramRule : object, IDirectResponseSchema

Properties

End

The maximum value at which items are placed into buckets of constant size. Values above end are lumped into a single bucket. This field is optional.

Declaration
public virtual Nullable<double> End { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Interval

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

Declaration
public virtual Nullable<double> Interval { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Start

The minimum value at which items are placed into buckets of constant size. Values below start are lumped into a single bucket. This field is optional.

Declaration
public virtual Nullable<double> Start { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Implements

IDirectResponseSchema
Back to top