interface KPISparklineOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.KPISparklineOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_KPISparklineOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.KPISparklineOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.KPISparklineOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » KPISparklineOptionsProperty |
The options that determine the visibility, color, type, and tooltip visibility of the sparkline of a KPI visual.
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 kPISparklineOptionsProperty: quicksight_mixins.CfnAnalysisPropsMixin.KPISparklineOptionsProperty = {
color: 'color',
tooltipVisibility: 'tooltipVisibility',
type: 'type',
visibility: 'visibility',
};
Properties
| Name | Type | Description |
|---|---|---|
| color? | string | The color of the sparkline. |
| tooltip | string | The tooltip visibility of the sparkline. |
| type? | string | The type of the sparkline. |
| visibility? | string | The visibility of the sparkline. |
color?
Type:
string
(optional)
The color of the sparkline.
tooltipVisibility?
Type:
string
(optional)
The tooltip visibility of the sparkline.
type?
Type:
string
(optional)
The type of the sparkline.
visibility?
Type:
string
(optional)
The visibility of the sparkline.

.NET
Go
Java
Python
TypeScript