Class: Aws::QuickSight::Types::SmallMultiplesAxisProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::SmallMultiplesAxisProperties
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Configures the properties of a chart's axes that are used by small multiples panels.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#placement ⇒ String
Defines the placement of the axis.
-
#scale ⇒ String
Determines whether scale of the axes are shared or independent.
Instance Attribute Details
#placement ⇒ String
Defines the placement of the axis. By default, axes are rendered
OUTSIDE
of the panels. Axes with INDEPENDENT
scale are rendered
INSIDE
the panels.
30255 30256 30257 30258 30259 30260 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 30255 class SmallMultiplesAxisProperties < Struct.new( :scale, :placement) SENSITIVE = [] include Aws::Structure end |
#scale ⇒ String
Determines whether scale of the axes are shared or independent. The
default value is SHARED
.
30255 30256 30257 30258 30259 30260 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 30255 class SmallMultiplesAxisProperties < Struct.new( :scale, :placement) SENSITIVE = [] include Aws::Structure end |