Class: Google::Apis::SheetsV4::GradientRule

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/sheets_v4/classes.rb,
lib/google/apis/sheets_v4/representations.rb,
lib/google/apis/sheets_v4/representations.rb

Overview

A rule that applies a gradient color scale format, based on the interpolation points listed. The format of a cell will vary based on its contents as compared to the values of the interpolation points.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GradientRule

Returns a new instance of GradientRule.



5938
5939
5940
# File 'lib/google/apis/sheets_v4/classes.rb', line 5938

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#maxpointGoogle::Apis::SheetsV4::InterpolationPoint

A single interpolation point on a gradient conditional format. These pin the gradient color scale according to the color, type and value chosen. Corresponds to the JSON property maxpoint



5924
5925
5926
# File 'lib/google/apis/sheets_v4/classes.rb', line 5924

def maxpoint
  @maxpoint
end

#midpointGoogle::Apis::SheetsV4::InterpolationPoint

A single interpolation point on a gradient conditional format. These pin the gradient color scale according to the color, type and value chosen. Corresponds to the JSON property midpoint



5930
5931
5932
# File 'lib/google/apis/sheets_v4/classes.rb', line 5930

def midpoint
  @midpoint
end

#minpointGoogle::Apis::SheetsV4::InterpolationPoint

A single interpolation point on a gradient conditional format. These pin the gradient color scale according to the color, type and value chosen. Corresponds to the JSON property minpoint



5936
5937
5938
# File 'lib/google/apis/sheets_v4/classes.rb', line 5936

def minpoint
  @minpoint
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5943
5944
5945
5946
5947
# File 'lib/google/apis/sheets_v4/classes.rb', line 5943

def update!(**args)
  @maxpoint = args[:maxpoint] if args.key?(:maxpoint)
  @midpoint = args[:midpoint] if args.key?(:midpoint)
  @minpoint = args[:minpoint] if args.key?(:minpoint)
end