Class: Google::Apis::SheetsV4::BasicChartAxis

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb

Overview

An axis of the chart. A chart may not have more than one axis per axis position.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BasicChartAxis

Returns a new instance of BasicChartAxis.



1093
1094
1095
# File 'generated/google/apis/sheets_v4/classes.rb', line 1093

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

Instance Attribute Details

#formatGoogle::Apis::SheetsV4::TextFormat

The format of a run of text in a cell. Absent values indicate that the field isn't specified. Corresponds to the JSON property format



1069
1070
1071
# File 'generated/google/apis/sheets_v4/classes.rb', line 1069

def format
  @format
end

#positionString

The position of this axis. Corresponds to the JSON property position

Returns:

  • (String)


1074
1075
1076
# File 'generated/google/apis/sheets_v4/classes.rb', line 1074

def position
  @position
end

#titleString

The title of this axis. If set, this overrides any title inferred from headers of the data. Corresponds to the JSON property title

Returns:

  • (String)


1080
1081
1082
# File 'generated/google/apis/sheets_v4/classes.rb', line 1080

def title
  @title
end

#title_text_positionGoogle::Apis::SheetsV4::TextPosition

Position settings for text. Corresponds to the JSON property titleTextPosition



1085
1086
1087
# File 'generated/google/apis/sheets_v4/classes.rb', line 1085

def title_text_position
  @title_text_position
end

#view_window_optionsGoogle::Apis::SheetsV4::ChartAxisViewWindowOptions

The options that define a "view window" for a chart (such as the visible values in an axis). Corresponds to the JSON property viewWindowOptions



1091
1092
1093
# File 'generated/google/apis/sheets_v4/classes.rb', line 1091

def view_window_options
  @view_window_options
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1098
1099
1100
1101
1102
1103
1104
# File 'generated/google/apis/sheets_v4/classes.rb', line 1098

def update!(**args)
  @format = args[:format] if args.key?(:format)
  @position = args[:position] if args.key?(:position)
  @title = args[:title] if args.key?(:title)
  @title_text_position = args[:title_text_position] if args.key?(:title_text_position)
  @view_window_options = args[:view_window_options] if args.key?(:view_window_options)
end