Class: Google::Apis::SheetsV4::EmbeddedChart

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

A chart embedded in a sheet.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EmbeddedChart

Returns a new instance of EmbeddedChart.



5466
5467
5468
# File 'lib/google/apis/sheets_v4/classes.rb', line 5466

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

Instance Attribute Details

#borderGoogle::Apis::SheetsV4::EmbeddedObjectBorder

A border along an embedded object. Corresponds to the JSON property border



5449
5450
5451
# File 'lib/google/apis/sheets_v4/classes.rb', line 5449

def border
  @border
end

#chart_idFixnum

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

Returns:

  • (Fixnum)


5454
5455
5456
# File 'lib/google/apis/sheets_v4/classes.rb', line 5454

def chart_id
  @chart_id
end

#positionGoogle::Apis::SheetsV4::EmbeddedObjectPosition

The position of an embedded object such as a chart. Corresponds to the JSON property position



5459
5460
5461
# File 'lib/google/apis/sheets_v4/classes.rb', line 5459

def position
  @position
end

#specGoogle::Apis::SheetsV4::ChartSpec

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



5464
5465
5466
# File 'lib/google/apis/sheets_v4/classes.rb', line 5464

def spec
  @spec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5471
5472
5473
5474
5475
5476
# File 'lib/google/apis/sheets_v4/classes.rb', line 5471

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