Interface CfnDashboard.MissingDataConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.MissingDataConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.MissingDataConfigurationPropertystatic final classAn implementation forCfnDashboard.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.
-
builder
-