Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MissingDataConfiguration

import type { MissingDataConfiguration } from "https://aws-api.deno.dev/v0.4/services/quicksight.ts?docs=full";

The configuration options that determine how missing data is treated during the rendering of a line chart.

interface MissingDataConfiguration {
TreatmentOption?: MissingDataTreatmentOption | null;
}

§Properties

§
TreatmentOption?: MissingDataTreatmentOption | null
[src]

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.