class Google::Apis::SheetsV4::CandlestickDomain
The domain of a CandlestickChart.
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 2432 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 2437 def update!(**args) @data = args[:data] if args.key?(:data) @reversed = args[:reversed] if args.key?(:reversed) end