Class CfnAnalysisPropsMixin.ConditionalFormattingGradientColorProperty
Formatting configuration for gradient color.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.ConditionalFormattingGradientColorProperty : CfnAnalysisPropsMixin.IConditionalFormattingGradientColorProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.ConditionalFormattingGradientColorProperty Implements CfnAnalysisPropsMixin.IConditionalFormattingGradientColorProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;
var conditionalFormattingGradientColorProperty = new ConditionalFormattingGradientColorProperty {
Color = new GradientColorProperty {
Stops = new [] { new GradientStopProperty {
Color = "color",
DataValue = 123,
GradientOffset = 123
} }
},
Expression = "expression"
};
Synopsis
Constructors
| ConditionalFormattingGradientColorProperty() | Formatting configuration for gradient color. |
Properties
| Color | Determines the color. |
| Expression | The expression that determines the formatting configuration for gradient color. |
Constructors
ConditionalFormattingGradientColorProperty()
Formatting configuration for gradient color.
public ConditionalFormattingGradientColorProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;
var conditionalFormattingGradientColorProperty = new ConditionalFormattingGradientColorProperty {
Color = new GradientColorProperty {
Stops = new [] { new GradientStopProperty {
Color = "color",
DataValue = 123,
GradientOffset = 123
} }
},
Expression = "expression"
};
Properties
Color
Determines the color.
public object? Color { get; set; }
Property Value
Remarks
Expression
The expression that determines the formatting configuration for gradient color.
public string? Expression { get; set; }