Class: Google::Apis::SheetsV4::UpdateChartSpecRequest

Inherits:
Object
  • Object
show all
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

Updates a chart's specifications. (This does not move or resize a chart. To move or resize a chart, use UpdateEmbeddedObjectPositionRequest.)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpdateChartSpecRequest

Returns a new instance of UpdateChartSpecRequest.



10991
10992
10993
# File 'lib/google/apis/sheets_v4/classes.rb', line 10991

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#chart_idFixnum

The ID of the chart to update. Corresponds to the JSON property chartId

Returns:

  • (Fixnum)


10984
10985
10986
# File 'lib/google/apis/sheets_v4/classes.rb', line 10984

def chart_id
  @chart_id
end

#specGoogle::Apis::SheetsV4::ChartSpec

The specifications of a chart. Corresponds to the JSON property spec



10989
10990
10991
# File 'lib/google/apis/sheets_v4/classes.rb', line 10989

def spec
  @spec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10996
10997
10998
10999
# File 'lib/google/apis/sheets_v4/classes.rb', line 10996

def update!(**args)
  @chart_id = args[:chart_id] if args.key?(:chart_id)
  @spec = args[:spec] if args.key?(:spec)
end