Class: Google::Apis::SheetsV4::PointStyle

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

The style of a point on the chart.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PointStyle

Returns a new instance of PointStyle.



7590
7591
7592
# File 'lib/google/apis/sheets_v4/classes.rb', line 7590

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

Instance Attribute Details

#shapeString

The point shape. If empty or unspecified, a default shape is used. Corresponds to the JSON property shape

Returns:

  • (String)


7583
7584
7585
# File 'lib/google/apis/sheets_v4/classes.rb', line 7583

def shape
  @shape
end

#sizeFloat

The point size. If empty, a default size is used. Corresponds to the JSON property size

Returns:

  • (Float)


7588
7589
7590
# File 'lib/google/apis/sheets_v4/classes.rb', line 7588

def size
  @size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7595
7596
7597
7598
# File 'lib/google/apis/sheets_v4/classes.rb', line 7595

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