Show / Hide Table of Contents

Class TreemapChartColorScale

A color scale for a treemap chart.

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

Properties

ETag

The ETag of the item.

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

MaxValueColor

The background color for cells with a color value greater than or equal to maxValue. Defaults to #109618 if not specified.

Declaration
[JsonProperty("maxValueColor")]
public virtual Color MaxValueColor { get; set; }
Property Value
Type Description
Color

MaxValueColorStyle

The background color for cells with a color value greater than or equal to maxValue. Defaults to #109618 if not specified. If max_value_color is also set, this field takes precedence.

Declaration
[JsonProperty("maxValueColorStyle")]
public virtual ColorStyle MaxValueColorStyle { get; set; }
Property Value
Type Description
ColorStyle

MidValueColor

The background color for cells with a color value at the midpoint between minValue and maxValue. Defaults to

efe6dc if not specified.

Declaration
[JsonProperty("midValueColor")]
public virtual Color MidValueColor { get; set; }
Property Value
Type Description
Color

MidValueColorStyle

The background color for cells with a color value at the midpoint between minValue and maxValue. Defaults to

efe6dc if not specified. If mid_value_color is also set, this field takes precedence.

Declaration
[JsonProperty("midValueColorStyle")]
public virtual ColorStyle MidValueColorStyle { get; set; }
Property Value
Type Description
ColorStyle

MinValueColor

The background color for cells with a color value less than or equal to minValue. Defaults to #dc3912 if not specified.

Declaration
[JsonProperty("minValueColor")]
public virtual Color MinValueColor { get; set; }
Property Value
Type Description
Color

MinValueColorStyle

The background color for cells with a color value less than or equal to minValue. Defaults to #dc3912 if not specified. If min_value_color is also set, this field takes precedence.

Declaration
[JsonProperty("minValueColorStyle")]
public virtual ColorStyle MinValueColorStyle { get; set; }
Property Value
Type Description
ColorStyle

NoDataColor

The background color for cells that have no color data associated with them. Defaults to #000000 if not specified.

Declaration
[JsonProperty("noDataColor")]
public virtual Color NoDataColor { get; set; }
Property Value
Type Description
Color

NoDataColorStyle

The background color for cells that have no color data associated with them. Defaults to #000000 if not specified. If no_data_color is also set, this field takes precedence.

Declaration
[JsonProperty("noDataColorStyle")]
public virtual ColorStyle NoDataColorStyle { get; set; }
Property Value
Type Description
ColorStyle

Implements

IDirectResponseSchema
In This Article
Back to top