interface MissingDataConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.MissingDataConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_MissingDataConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.MissingDataConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.MissingDataConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const missingDataConfigurationProperty: quicksight_mixins.CfnDashboardPropsMixin.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 value0.SHOW_AS_BLANK: Display a blank space when rendering missing data.

.NET
Go
Java
Python
TypeScript