class Google::Apis::SheetsV4::WaterfallChartDomain

The domain of a waterfall chart.

Attributes

data[RW]

The data included in a domain or series. Corresponds to the JSON property `data` @return [Google::Apis::SheetsV4::ChartData]

reversed[RW]

True to reverse the order of the domain values (horizontal axis). Corresponds to the JSON property `reversed` @return [Boolean]

reversed?[RW]

True to reverse the order of the domain values (horizontal axis). Corresponds to the JSON property `reversed` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 11185
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/sheets_v4/classes.rb, line 11190
def update!(**args)
  @data = args[:data] if args.key?(:data)
  @reversed = args[:reversed] if args.key?(:reversed)
end