class Google::Apis::SheetsV4::BasicChartDomain

The domain of a chart. For example, if charting stock prices over time, this would be the date.

Attributes

domain[RW]

The data included in a domain or series. Corresponds to the JSON property `domain` @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 1123
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 1128
def update!(**args)
  @domain = args[:domain] if args.key?(:domain)
  @reversed = args[:reversed] if args.key?(:reversed)
end