Class: Google::Apis::SheetsV4::WaterfallChartDomain
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SheetsV4::WaterfallChartDomain
 
- 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 domain of a waterfall chart.
Instance Attribute Summary collapse
- 
  
    
      #data  ⇒ Google::Apis::SheetsV4::ChartData 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The data included in a domain or series. 
- 
  
    
      #reversed  ⇒ Boolean 
    
    
      (also: #reversed?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    True to reverse the order of the domain values (horizontal axis). 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ WaterfallChartDomain 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of WaterfallChartDomain. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ WaterfallChartDomain
Returns a new instance of WaterfallChartDomain
| 9953 9954 9955 | # File 'generated/google/apis/sheets_v4/classes.rb', line 9953 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#data ⇒ Google::Apis::SheetsV4::ChartData
The data included in a domain or series.
Corresponds to the JSON property data
| 9945 9946 9947 | # File 'generated/google/apis/sheets_v4/classes.rb', line 9945 def data @data end | 
#reversed ⇒ Boolean Also known as: reversed?
True to reverse the order of the domain values (horizontal axis).
Corresponds to the JSON property reversed
| 9950 9951 9952 | # File 'generated/google/apis/sheets_v4/classes.rb', line 9950 def reversed @reversed end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 9958 9959 9960 9961 | # File 'generated/google/apis/sheets_v4/classes.rb', line 9958 def update!(**args) @data = args[:data] if args.key?(:data) @reversed = args[:reversed] if args.key?(:reversed) end |