RangeSlider
Defined in: js-api/src/widgets/data-widgets.ts:21
A slider that lets user control both min and max values.
Extends
Constructors
Constructor
new RangeSlider(
dart):RangeSlider
Defined in: js-api/src/widgets/base.ts:442
Parameters
| Parameter | Type |
|---|---|
dart | any |
Returns
RangeSlider
Inherited from
Properties
| Property | Modifier | Type | Default value | Description | Inherited from | Defined in |
|---|---|---|---|---|---|---|
_functions | protected | Func[] | [] | - | DartWidget._functions | js-api/src/widgets/base.ts:214 |
_properties | protected | Property[] | [] | - | DartWidget._properties | js-api/src/widgets/base.ts:213 |
_root | protected | HTMLElement | undefined | - | DartWidget._root | js-api/src/u2core/component.ts:445 |
_u2 | readonly | ComponentState | undefined | - | DartWidget._u2 | js-api/src/u2core/component.ts:82 |
componentMeta? | public | ComponentMetaBase | undefined | The registry metadata of the tag that built this component, stamped by the spec renderer — the single source the introspection surface below is generated from. | DartWidget.componentMeta | js-api/src/u2core/component.ts:77 |
dart | public | any | undefined | - | DartWidget.dart | js-api/src/widgets/base.ts:217 |
factory | public | Func | null | null | Constructor function. No parameters, returns [Widget]. | DartWidget.factory | js-api/src/widgets/base.ts:211 |
isDetached | public | boolean | false | - | DartWidget.isDetached | js-api/src/widgets/base.ts:218 |
props | public | any | undefined | - | DartWidget.props | js-api/src/widgets/base.ts:215 |
specProps? | public | Record<string, unknown> | undefined | The props the registry's create was handed, stamped alongside componentMeta: the last resort of the property read below, for a component that keeps a prop under another name or not at all (a create wrapping a bare element). Construction-time values — a live one always wins. | DartWidget.specProps | js-api/src/u2core/component.ts:81 |
subs | public | Subscription[] | undefined | - | DartWidget.subs | js-api/src/widgets/base.ts:216 |
temp | public | any | undefined | Contains auxiliary information | DartWidget.temp | js-api/src/widgets/base.ts:208 |
Accessors
aiDescription
Get Signature
get aiDescription():
string|null
Defined in: js-api/src/widgets/base.ts:457
AI briefing of the underlying Dart widget.
Returns
string | null
Set Signature
set aiDescription(
x):void
Defined in: js-api/src/widgets/base.ts:462
A short AI-facing briefing, seeded from the registry's usage or description.
Parameters
| Parameter | Type |
|---|---|
x | string | null |
Returns
void
Inherited from
ambientAdoption
Get Signature
get
protectedambientAdoption():boolean
Defined in: js-api/src/widgets/base.ts:272
A widget wrapper minted inside somebody's effect scope must not be auto-disposed with it.
Returns
boolean
Inherited from
children
Get Signature
get children():
Widget<any>[]
Defined in: js-api/src/widgets/base.ts:304
Parent widget up the DOM tree, or null.
Returns
Widget<any>[]
Inherited from
isCustomRange
Get Signature
get isCustomRange():
boolean
Defined in: js-api/src/widgets/data-widgets.ts:47
Whether the current [minRange, maxRange] window is a strict sub-range of [min, max] — i.e. the user has narrowed the slider away from full range.
Returns
boolean
max
Get Signature
get max():
number
Defined in: js-api/src/widgets/data-widgets.ts:43
Gets maximum value.
Returns
number
maxRange
Get Signature
get maxRange():
number
Defined in: js-api/src/widgets/data-widgets.ts:37
Gets maximum range value.
Returns
number
min
Get Signature
get min():
number
Defined in: js-api/src/widgets/data-widgets.ts:40
Gets minimum value.
Returns
number