Show / Hide Table of Contents

Class ChartGroupRule

An optional setting on the ChartData of the domain of a data source chart that defines buckets for the values in the domain rather than breaking out each individual value. For example, when plotting a data source chart, you can specify a histogram rule on the domain (it should only contain numeric values), grouping its values into buckets. Any values of a chart series that fall into the same bucket are aggregated based on the aggregate_type.

Inheritance
System.Object
ChartGroupRule
Implements
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 ChartGroupRule : IDirectResponseSchema

Properties

DateTimeRule

A ChartDateTimeRule.

Declaration
[JsonProperty("dateTimeRule")]
public virtual ChartDateTimeRule DateTimeRule { get; set; }
Property Value
Type Description
ChartDateTimeRule

ETag

The ETag of the item.

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

HistogramRule

A ChartHistogramRule

Declaration
[JsonProperty("histogramRule")]
public virtual ChartHistogramRule HistogramRule { get; set; }
Property Value
Type Description
ChartHistogramRule

Implements

IDirectResponseSchema
In This Article
Back to top