Class: Aws::QuickSight::Types::MissingDataConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::MissingDataConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
The configuration options that determine how missing data is treated during the rendering of a line chart.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#treatment_option ⇒ String
The treatment option that determines how missing data should be rendered.
Instance Attribute Details
#treatment_option ⇒ String
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.
22538 22539 22540 22541 22542 |
# File 'lib/aws-sdk-quicksight/types.rb', line 22538 class MissingDataConfiguration < Struct.new( :treatment_option) SENSITIVE = [] include Aws::Structure end |