interface GradientStopProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.GradientStopProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_GradientStopProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.GradientStopProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.GradientStopProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » GradientStopProperty |
Determines the gradient stop configuration.
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/cfn-property-mixins';
const gradientStopProperty: quicksight.CfnTemplatePropsMixin.GradientStopProperty = {
color: 'color',
dataValue: 123,
gradientOffset: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| color? | string | Determines the color. |
| data | number | Determines the data value. |
| gradient | number | Determines gradient offset value. |
color?
Type:
string
(optional)
Determines the color.
dataValue?
Type:
number
(optional)
Determines the data value.
gradientOffset?
Type:
number
(optional, default: 0)
Determines gradient offset value.

.NET
Go
Java
Python
TypeScript