Show / Hide Table of Contents

Class HistogramRule

Inheritance
System.Object
HistogramRule
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class HistogramRule : 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
[JsonProperty("end")]
public virtual 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
[JsonProperty("interval")]
public virtual 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
[JsonProperty("start")]
public virtual double? Start { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top