interface GradientStopProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.GradientStopProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.GradientStopProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.GradientStopProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»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 * as quicksight from '@aws-cdk/aws-quicksight';
const gradientStopProperty: quicksight.CfnAnalysis.GradientStopProperty = {
  gradientOffset: 123,
  // the properties below are optional
  color: 'color',
  dataValue: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| gradient | number | Determines gradient offset value. | 
| color? | string | Determines the color. | 
| data | number | Determines the data value. | 
gradientOffset
Type:
number
Determines gradient offset value.
color?
Type:
string
(optional)
Determines the color.
dataValue?
Type:
number
(optional)
Determines the data value.
