Interface CfnTemplate.MissingDataConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.MissingDataConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.MissingDataConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration options that determine how missing data is treated during the rendering of a line chart.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; MissingDataConfigurationProperty missingDataConfigurationProperty = MissingDataConfigurationProperty.builder() .treatmentOption("treatmentOption") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.MissingDataConfigurationProperty
static final class
An implementation forCfnTemplate.MissingDataConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTreatmentOption
The treatment option that determines how missing data should be rendered. Choose from the following options:.INTERPOLATE
: Interpolate missing values between the prior and the next known value.SHOW_AS_ZERO
: Show missing values as the value0
.SHOW_AS_BLANK
: Display a blank space when rendering missing data.
- See Also:
-
builder
-