Class: Aws::QuickSight::Types::DonutOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::DonutOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
The options for configuring a donut chart or pie chart.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arc_options ⇒ Types::ArcOptions
The option for define the arc of the chart shape.
-
#donut_center_options ⇒ Types::DonutCenterOptions
The label options of the label that is displayed in the center of a donut chart.
Instance Attribute Details
#arc_options ⇒ Types::ArcOptions
The option for define the arc of the chart shape. Valid values are as follows:
-
‘WHOLE` - A pie chart
-
‘SMALL`- A small-sized donut chart
-
‘MEDIUM`- A medium-sized donut chart
-
‘LARGE`- A large-sized donut chart
13963 13964 13965 13966 13967 13968 |
# File 'lib/aws-sdk-quicksight/types.rb', line 13963 class DonutOptions < Struct.new( :arc_options, :donut_center_options) SENSITIVE = [] include Aws::Structure end |
#donut_center_options ⇒ Types::DonutCenterOptions
The label options of the label that is displayed in the center of a donut chart. This option isn’t available for pie charts.
13963 13964 13965 13966 13967 13968 |
# File 'lib/aws-sdk-quicksight/types.rb', line 13963 class DonutOptions < Struct.new( :arc_options, :donut_center_options) SENSITIVE = [] include Aws::Structure end |