class Google::Apis::SheetsV4::CandlestickChartSpec

A candlestick chart.

Attributes

data[RW]

The Candlestick chart data. Only one CandlestickData is supported. Corresponds to the JSON property `data` @return [Array<Google::Apis::SheetsV4::CandlestickData>]

domain[RW]

The domain of a CandlestickChart. Corresponds to the JSON property `domain` @return [Google::Apis::SheetsV4::CandlestickDomain]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 2368
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 2373
def update!(**args)
  @data = args[:data] if args.key?(:data)
  @domain = args[:domain] if args.key?(:domain)
end