interface MissingDataConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.MissingDataConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_MissingDataConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.MissingDataConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.MissingDataConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnAnalysis»MissingDataConfigurationProperty | 
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const missingDataConfigurationProperty: quicksight.CfnAnalysis.MissingDataConfigurationProperty = {
  treatmentOption: 'treatmentOption',
};
Properties
| Name | Type | Description | 
|---|---|---|
| treatment | string | The treatment option that determines how missing data should be rendered. Choose from the following options:. | 
treatmentOption?
Type:
string
(optional)
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 value- 0.
- SHOW_AS_BLANK: Display a blank space when rendering missing data.
