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

FilterSliderControl

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

A control to display a horizontal toggle bar. This is used to change a value by sliding the toggle.

interface FilterSliderControl {
DisplayOptions?: SliderControlDisplayOptions | null;
FilterControlId: string;
MaximumValue: number;
MinimumValue: number;
SourceFilterId: string;
StepSize: number;
Title: string;
Type?: SheetControlSliderType | null;
}

§Properties

§
DisplayOptions?: SliderControlDisplayOptions | null
[src]

The display options of a control.

§
FilterControlId: string
[src]

The ID of the FilterSliderControl.

§
MaximumValue: number
[src]

The smaller value that is displayed at the left of the slider.

§
MinimumValue: number
[src]

The larger value that is displayed at the right of the slider.

§
SourceFilterId: string
[src]

The source filter ID of the FilterSliderControl.

§
StepSize: number
[src]

The number of increments that the slider bar is divided into.

§
Title: string
[src]

The title of the FilterSliderControl.

§

The type of FilterSliderControl. Choose one of the following options:

  • SINGLE_POINT: Filter against(equals) a single data point.
  • RANGE: Filter data that is in a specified range.