Class: Aws::QuickSight::Types::MissingDataConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::MissingDataConfiguration
- Defined in:
- gems/aws-sdk-quicksight/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 value0
.SHOW_AS_BLANK
: Display a blank space when rendering missing data.
21533 21534 21535 21536 21537 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 21533 class MissingDataConfiguration < Struct.new( :treatment_option) SENSITIVE = [] include Aws::Structure end |