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.
26304 26305 26306 26307 26308 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 26304 class MissingDataConfiguration < Struct.new( :treatment_option) SENSITIVE = [] include Aws::Structure end |