Class CfnAnalysis.GaugeChartConditionalFormattingProperty
The conditional formatting of a GaugeChartVisual
.
Inheritance
System.Object
CfnAnalysis.GaugeChartConditionalFormattingProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class GaugeChartConditionalFormattingProperty : Object, CfnAnalysis.IGaugeChartConditionalFormattingProperty
Syntax (vb)
Public Class GaugeChartConditionalFormattingProperty
Inherits Object
Implements CfnAnalysis.IGaugeChartConditionalFormattingProperty
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 gaugeChartConditionalFormattingProperty = new GaugeChartConditionalFormattingProperty {
ConditionalFormattingOptions = new [] { new GaugeChartConditionalFormattingOptionProperty {
Arc = 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"
}
}
},
PrimaryValue = new GaugeChartPrimaryValueConditionalFormattingProperty {
Icon = new ConditionalFormattingIconProperty {
CustomCondition = new ConditionalFormattingCustomIconConditionProperty {
Expression = "expression",
IconOptions = new ConditionalFormattingCustomIconOptionsProperty {
Icon = "icon",
UnicodeIcon = "unicodeIcon"
},
// the properties below are optional
Color = "color",
DisplayConfiguration = new ConditionalFormattingIconDisplayConfigurationProperty {
IconDisplayOption = "iconDisplayOption"
}
},
IconSet = new ConditionalFormattingIconSetProperty {
Expression = "expression",
// the properties below are optional
IconSetType = "iconSetType"
}
},
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
Constructors
GaugeChartConditionalFormattingProperty() |
Properties
ConditionalFormattingOptions | Conditional formatting options of a |
Constructors
GaugeChartConditionalFormattingProperty()
public GaugeChartConditionalFormattingProperty()
Properties
ConditionalFormattingOptions
Conditional formatting options of a GaugeChartVisual
.
public object ConditionalFormattingOptions { get; set; }
Property Value
System.Object