Class: Aws::QuickSight::Types::DonutOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::DonutOptions
- Defined in:
- gems/aws-sdk-quicksight/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 chartSMALL- A small-sized donut chartMEDIUM- A medium-sized donut chartLARGE- A large-sized donut chart
17285 17286 17287 17288 17289 17290 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 17285 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.
17285 17286 17287 17288 17289 17290 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 17285 class DonutOptions < Struct.new( :arc_options, :donut_center_options) SENSITIVE = [] include Aws::Structure end |