interface DataBarsOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.DataBarsOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_DataBarsOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.DataBarsOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.DataBarsOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » DataBarsOptionsProperty |
The options for data bars.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const dataBarsOptionsProperty: quicksight_mixins.CfnAnalysisPropsMixin.DataBarsOptionsProperty = {
fieldId: 'fieldId',
negativeColor: 'negativeColor',
positiveColor: 'positiveColor',
};
Properties
| Name | Type | Description |
|---|---|---|
| field | string | The field ID for the data bars options. |
| negative | string | The color of the negative data bar. |
| positive | string | The color of the positive data bar. |
fieldId?
Type:
string
(optional)
The field ID for the data bars options.
negativeColor?
Type:
string
(optional)
The color of the negative data bar.
positiveColor?
Type:
string
(optional)
The color of the positive data bar.

.NET
Go
Java
Python
TypeScript