View Source GoogleApi.Sheets.V4.Model.TreemapChartColorScale (google_api_sheets v0.34.0)
A color scale for a treemap chart.
Attributes
-
maxValueColor
(type:GoogleApi.Sheets.V4.Model.Color.t
, default:nil
) - The background color for cells with a color value greater than or equal to maxValue. Defaults to #109618 if not specified. Deprecated: Use max_value_color_style. -
maxValueColorStyle
(type:GoogleApi.Sheets.V4.Model.ColorStyle.t
, default:nil
) - 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. -
midValueColor
(type:GoogleApi.Sheets.V4.Model.Color.t
, default:nil
) - The background color for cells with a color value at the midpoint between minValue and maxValue. Defaults to #efe6dc if not specified. Deprecated: Use mid_value_color_style. -
midValueColorStyle
(type:GoogleApi.Sheets.V4.Model.ColorStyle.t
, default:nil
) - 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. -
minValueColor
(type:GoogleApi.Sheets.V4.Model.Color.t
, default:nil
) - The background color for cells with a color value less than or equal to minValue. Defaults to #dc3912 if not specified. Deprecated: Use min_value_color_style. -
minValueColorStyle
(type:GoogleApi.Sheets.V4.Model.ColorStyle.t
, default:nil
) - 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. -
noDataColor
(type:GoogleApi.Sheets.V4.Model.Color.t
, default:nil
) - The background color for cells that have no color data associated with them. Defaults to #000000 if not specified. Deprecated: Use no_data_color_style. -
noDataColorStyle
(type:GoogleApi.Sheets.V4.Model.ColorStyle.t
, default:nil
) - 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.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Sheets.V4.Model.TreemapChartColorScale{ maxValueColor: GoogleApi.Sheets.V4.Model.Color.t() | nil, maxValueColorStyle: GoogleApi.Sheets.V4.Model.ColorStyle.t() | nil, midValueColor: GoogleApi.Sheets.V4.Model.Color.t() | nil, midValueColorStyle: GoogleApi.Sheets.V4.Model.ColorStyle.t() | nil, minValueColor: GoogleApi.Sheets.V4.Model.Color.t() | nil, minValueColorStyle: GoogleApi.Sheets.V4.Model.ColorStyle.t() | nil, noDataColor: GoogleApi.Sheets.V4.Model.Color.t() | nil, noDataColorStyle: GoogleApi.Sheets.V4.Model.ColorStyle.t() | nil }