Class CfnTemplate.KPIProgressBarConditionalFormattingProperty
The conditional formatting for the progress bar of a KPI visual.
Inherited Members
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
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
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; }