Class: Aws::QuickSight::Types::MissingDataConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#treatment_optionString

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.

Returns:

  • (String)


21279
21280
21281
21282
21283
# File 'lib/aws-sdk-quicksight/types.rb', line 21279

class MissingDataConfiguration < Struct.new(
  :treatment_option)
  SENSITIVE = []
  include Aws::Structure
end