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
14087 14088 14089 14090 14091 14092 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 14087 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.
14087 14088 14089 14090 14091 14092 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 14087 class DonutOptions < Struct.new( :arc_options, :donut_center_options) SENSITIVE = [] include Aws::Structure end |