Class: Google::Apis::SheetsV4::GradientRule
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::GradientRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/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
-
#maxpoint ⇒ Google::Apis::SheetsV4::InterpolationPoint
A single interpolation point on a gradient conditional format.
-
#midpoint ⇒ Google::Apis::SheetsV4::InterpolationPoint
A single interpolation point on a gradient conditional format.
-
#minpoint ⇒ Google::Apis::SheetsV4::InterpolationPoint
A single interpolation point on a gradient conditional format.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GradientRule
constructor
A new instance of GradientRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GradientRule
Returns a new instance of GradientRule
5276 5277 5278 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5276 def initialize(**args) update!(**args) end |
Instance Attribute Details
#maxpoint ⇒ Google::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
5260 5261 5262 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5260 def maxpoint @maxpoint end |
#midpoint ⇒ Google::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
5267 5268 5269 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5267 def midpoint @midpoint end |
#minpoint ⇒ Google::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
5274 5275 5276 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5274 def minpoint @minpoint end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5281 5282 5283 5284 5285 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 5281 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 |