interface DonutOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.DonutOptionsProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_DonutOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.DonutOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.DonutOptionsProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnTemplate»DonutOptionsProperty | 
The options for configuring a donut chart or pie chart.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const donutOptionsProperty: quicksight.CfnTemplate.DonutOptionsProperty = {
  arcOptions: {
    arcThickness: 'arcThickness',
  },
  donutCenterOptions: {
    labelVisibility: 'labelVisibility',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| arc | IResolvable | Arc | The option for define the arc of the chart shape. Valid values are as follows:. | 
| donut | IResolvable | Donut | The label options of the label that is displayed in the center of a donut chart. | 
arcOptions?
Type:
IResolvable | Arc
(optional)
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
donutCenterOptions?
Type:
IResolvable | Donut
(optional)
The label options of the label that is displayed in the center of a donut chart.
This option isn't available for pie charts.
