Class: Google::Apis::SheetsV4::BasicChartSpec

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

The specification for a basic chart. See BasicChartType for the list of charts this supports.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ BasicChartSpec

Returns a new instance of BasicChartSpec.



3970
3971
3972
# File 'generated/google/apis/sheets_v4/classes.rb', line 3970

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

Instance Attribute Details

#axisArray<Google::Apis::SheetsV4::BasicChartAxis>

The axis on the chart. Corresponds to the JSON property axis



3968
3969
3970
# File 'generated/google/apis/sheets_v4/classes.rb', line 3968

def axis
  @axis
end

#chart_typeString

The type of the chart. Corresponds to the JSON property chartType

Returns:

  • (String)


3938
3939
3940
# File 'generated/google/apis/sheets_v4/classes.rb', line 3938

def chart_type
  @chart_type
end

#domainsArray<Google::Apis::SheetsV4::BasicChartDomain>

The domain of data this is charting. Only a single domain is currently supported. Corresponds to the JSON property domains



3944
3945
3946
# File 'generated/google/apis/sheets_v4/classes.rb', line 3944

def domains
  @domains
end

#header_countFixnum

The number of rows or columns in the data that are "headers". If not set, Google Sheets will guess how many rows are headers based on the data. (Note that BasicChartAxis.title may override the axis title inferred from the header values.) Corresponds to the JSON property headerCount

Returns:

  • (Fixnum)


3953
3954
3955
# File 'generated/google/apis/sheets_v4/classes.rb', line 3953

def header_count
  @header_count
end

#legend_positionString

The position of the chart legend. Corresponds to the JSON property legendPosition

Returns:

  • (String)


3963
3964
3965
# File 'generated/google/apis/sheets_v4/classes.rb', line 3963

def legend_position
  @legend_position
end

#seriesArray<Google::Apis::SheetsV4::BasicChartSeries>

The data this chart is visualizing. Corresponds to the JSON property series



3958
3959
3960
# File 'generated/google/apis/sheets_v4/classes.rb', line 3958

def series
  @series
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3975
3976
3977
3978
3979
3980
3981
3982
# File 'generated/google/apis/sheets_v4/classes.rb', line 3975

def update!(**args)
  @chart_type = args[:chart_type] if args.key?(:chart_type)
  @domains = args[:domains] if args.key?(:domains)
  @header_count = args[:header_count] if args.key?(:header_count)
  @series = args[:series] if args.key?(:series)
  @legend_position = args[:legend_position] if args.key?(:legend_position)
  @axis = args[:axis] if args.key?(:axis)
end