Class: Google::Apis::SheetsV4::WaterfallChartSpec
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::WaterfallChartSpec
- 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 waterfall chart.
Instance Attribute Summary collapse
-
#connector_line_style ⇒ Google::Apis::SheetsV4::LineStyle
Properties that describe the style of a line.
-
#domain ⇒ Google::Apis::SheetsV4::WaterfallChartDomain
The domain of a waterfall chart.
-
#first_value_is_total ⇒ Boolean
(also: #first_value_is_total?)
True to interpret the first value as a total.
-
#hide_connector_lines ⇒ Boolean
(also: #hide_connector_lines?)
True to hide connector lines between columns.
-
#series ⇒ Array<Google::Apis::SheetsV4::WaterfallChartSeries>
The data this waterfall chart is visualizing.
-
#stacked_type ⇒ String
The stacked type.
-
#total_data_label ⇒ Google::Apis::SheetsV4::DataLabel
Settings for one set of data labels.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WaterfallChartSpec
constructor
A new instance of WaterfallChartSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WaterfallChartSpec
Returns a new instance of WaterfallChartSpec.
11275 11276 11277 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 11275 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connector_line_style ⇒ Google::Apis::SheetsV4::LineStyle
Properties that describe the style of a line.
Corresponds to the JSON property connectorLineStyle
11238 11239 11240 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 11238 def connector_line_style @connector_line_style end |
#domain ⇒ Google::Apis::SheetsV4::WaterfallChartDomain
The domain of a waterfall chart.
Corresponds to the JSON property domain
11243 11244 11245 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 11243 def domain @domain end |
#first_value_is_total ⇒ Boolean Also known as: first_value_is_total?
True to interpret the first value as a total.
Corresponds to the JSON property firstValueIsTotal
11248 11249 11250 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 11248 def first_value_is_total @first_value_is_total end |
#hide_connector_lines ⇒ Boolean Also known as: hide_connector_lines?
True to hide connector lines between columns.
Corresponds to the JSON property hideConnectorLines
11254 11255 11256 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 11254 def hide_connector_lines @hide_connector_lines end |
#series ⇒ Array<Google::Apis::SheetsV4::WaterfallChartSeries>
The data this waterfall chart is visualizing.
Corresponds to the JSON property series
11260 11261 11262 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 11260 def series @series end |
#stacked_type ⇒ String
The stacked type.
Corresponds to the JSON property stackedType
11265 11266 11267 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 11265 def stacked_type @stacked_type end |
#total_data_label ⇒ Google::Apis::SheetsV4::DataLabel
Settings for one set of data labels. Data labels are annotations that appear
next to a set of data, such as the points on a line chart, and provide
additional information about what the data represents, such as a text
representation of the value behind that point on the graph.
Corresponds to the JSON property totalDataLabel
11273 11274 11275 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 11273 def total_data_label @total_data_label end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11280 11281 11282 11283 11284 11285 11286 11287 11288 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 11280 def update!(**args) @connector_line_style = args[:connector_line_style] if args.key?(:connector_line_style) @domain = args[:domain] if args.key?(:domain) @first_value_is_total = args[:first_value_is_total] if args.key?(:first_value_is_total) @hide_connector_lines = args[:hide_connector_lines] if args.key?(:hide_connector_lines) @series = args[:series] if args.key?(:series) @stacked_type = args[:stacked_type] if args.key?(:stacked_type) @total_data_label = args[:total_data_label] if args.key?(:total_data_label) end |