class Google::Apis::SheetsV4::ChartCustomNumberFormatOptions
Custom number formatting options for chart attributes.
Attributes
prefix[RW]
Custom prefix to be prepended to the chart attribute. This field is optional. Corresponds to the JSON property `prefix` @return [String]
suffix[RW]
Custom suffix to be appended to the chart attribute. This field is optional. Corresponds to the JSON property `suffix` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 2739 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 2744 def update!(**args) @prefix = args[:prefix] if args.key?(:prefix) @suffix = args[:suffix] if args.key?(:suffix) end