aws-cdk-lib.aws_quicksight.CfnTemplate.MissingDataConfigurationProperty

interface MissingDataConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.MissingDataConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_MissingDataConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.MissingDataConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.MissingDataConfigurationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » 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.CfnTemplate.MissingDataConfigurationProperty = {
  treatmentOption: 'treatmentOption',
};

Properties

NameTypeDescription
treatmentOption?stringThe 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.