Show / Hide Table of Contents

Interface CfnTemplate.IGaugeChartArcConditionalFormattingProperty

The options that determine the presentation of the arc of a GaugeChartVisual .

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gaugechartarcconditionalformatting.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 gaugeChartArcConditionalFormattingProperty = new GaugeChartArcConditionalFormattingProperty {
                 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

Properties

ForegroundColor

The conditional formatting of the arc foreground color.

Properties

ForegroundColor

The conditional formatting of the arc foreground color.

object? ForegroundColor { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX