interface MissingDataConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.MissingDataConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_MissingDataConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.MissingDataConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.MissingDataConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDashboard » 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.CfnDashboard.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.