Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 2.5 KB

slider.md

File metadata and controls

28 lines (24 loc) · 2.5 KB

缩略轴

引入

import { Slider } from '@antv/component';

配置项

属性 类型 描述 默认值
type range | value Slider 类型,范围选择/值选择 'range'
orientation horizontal | vertical 朝向 horizontal
trackLength number 轨道长度 -
trackSize number 轨道宽度 -
values [number, number] [0,1]
brushable boolean 是否支持刷选 true
slidable boolean 是否支持拖动 true
scrollable boolean 是否支持滚动 true
padding number | number[] 内边距 0
selection{Style} StyleProps 选区样式 -
selectionType select | invert 选区类型,中间选取/两端反选
track{Style} StyleProps 轨道样式 -
handleFormatter (value: number)=>string 滑动手柄文本格式化 -
handle{Style} StyleProps 滑动手柄样式 -
sparkline{Style} SparklineStyleProps 迷你图属性,见 SparklineStyleProps -
onChange (values: number | number[])=>void 值变化回调 -