class Google::Apis::SheetsV4::PointStyle
The style of a point on the chart.
Attributes
shape[RW]
The point shape. If empty or unspecified, a default shape is used. Corresponds to the JSON property `shape` @return [String]
size[RW]
The point size. If empty, a default size is used. Corresponds to the JSON property `size` @return [Float]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 7590 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 7595 def update!(**args) @shape = args[:shape] if args.key?(:shape) @size = args[:size] if args.key?(:size) end