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

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

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)


20448
20449
20450
20451
20452
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 20448

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