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

ParameterSliderControl

import type { ParameterSliderControl } 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 ParameterSliderControl {
DisplayOptions?: SliderControlDisplayOptions | null;
MaximumValue: number;
MinimumValue: number;
ParameterControlId: string;
SourceParameterName: string;
StepSize: number;
Title: string;
}

§Properties

§
DisplayOptions?: SliderControlDisplayOptions | null
[src]

The display options of a control.

§
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.

§
ParameterControlId: string
[src]

The ID of the ParameterSliderControl.

§
SourceParameterName: string
[src]

The source parameter name of the ParameterSliderControl.

§
StepSize: number
[src]

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

§
Title: string
[src]

The title of the ParameterSliderControl.