Show / Hide Table of Contents

Class CfnTemplate.KPIProgressBarConditionalFormattingProperty

The conditional formatting for the progress bar of a KPI visual.

Inheritance
object
CfnTemplate.KPIProgressBarConditionalFormattingProperty
Implements
CfnTemplate.IKPIProgressBarConditionalFormattingProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.KPIProgressBarConditionalFormattingProperty : CfnTemplate.IKPIProgressBarConditionalFormattingProperty
Syntax (vb)
Public Class CfnTemplate.KPIProgressBarConditionalFormattingProperty Implements CfnTemplate.IKPIProgressBarConditionalFormattingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpiprogressbarconditionalformatting.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 kPIProgressBarConditionalFormattingProperty = new KPIProgressBarConditionalFormattingProperty {
                 ForegroundColor = 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

Constructors

KPIProgressBarConditionalFormattingProperty()

The conditional formatting for the progress bar of a KPI visual.

Properties

ForegroundColor

The conditional formatting of the progress bar's foreground color.

Constructors

KPIProgressBarConditionalFormattingProperty()

The conditional formatting for the progress bar of a KPI visual.

public KPIProgressBarConditionalFormattingProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-kpiprogressbarconditionalformatting.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 kPIProgressBarConditionalFormattingProperty = new KPIProgressBarConditionalFormattingProperty {
                 ForegroundColor = 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"
                     }
                 }
             };

Properties

ForegroundColor

The conditional formatting of the progress bar's foreground color.

public object? ForegroundColor { get; set; }
Property Value

object

Remarks

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

Implements

CfnTemplate.IKPIProgressBarConditionalFormattingProperty
Back to top Generated by DocFX