Show / Hide Table of Contents

Interface CfnTemplate.ITableRowConditionalFormattingProperty

The conditional formatting of a table row.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTemplate.ITableRowConditionalFormattingProperty
Syntax (vb)
Public Interface CfnTemplate.ITableRowConditionalFormattingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablerowconditionalformatting.html

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.AWS.QuickSight;

             var tableRowConditionalFormattingProperty = new TableRowConditionalFormattingProperty {
                 BackgroundColor = new ConditionalFormattingColorProperty {
                     Gradient = new ConditionalFormattingGradientColorProperty {
                         Color = new GradientColorProperty {
                             Stops = new [] { new GradientStopProperty {
                                 GradientOffset = 123,

                                 // the properties below are optional
                                 Color = "color",
                                 DataValue = 123
                             } }
                         },
                         Expression = "expression"
                     },
                     Solid = new ConditionalFormattingSolidColorProperty {
                         Expression = "expression",

                         // the properties below are optional
                         Color = "color"
                     }
                 },
                 TextColor = new ConditionalFormattingColorProperty {
                     Gradient = new ConditionalFormattingGradientColorProperty {
                         Color = new GradientColorProperty {
                             Stops = new [] { new GradientStopProperty {
                                 GradientOffset = 123,

                                 // the properties below are optional
                                 Color = "color",
                                 DataValue = 123
                             } }
                         },
                         Expression = "expression"
                     },
                     Solid = new ConditionalFormattingSolidColorProperty {
                         Expression = "expression",

                         // the properties below are optional
                         Color = "color"
                     }
                 }
             };

Synopsis

Properties

BackgroundColor

The conditional formatting color (solid, gradient) of the background for a table row.

TextColor

The conditional formatting color (solid, gradient) of the text for a table row.

Properties

BackgroundColor

The conditional formatting color (solid, gradient) of the background for a table row.

object? BackgroundColor { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablerowconditionalformatting.html#cfn-quicksight-template-tablerowconditionalformatting-backgroundcolor

TextColor

The conditional formatting color (solid, gradient) of the text for a table row.

object? TextColor { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablerowconditionalformatting.html#cfn-quicksight-template-tablerowconditionalformatting-textcolor

Back to top Generated by DocFX