Created
February 12, 2017 19:21
-
-
Save chrisobriensp/6d800cda98a71f88d2567a8ebbeb5d79 to your computer and use it in GitHub Desktop.
An extract showing the Slider control you can use in SPFx web part properties (from getPropertyPaneConfiguration() method).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PropertyPaneSlider('maxResultsProp', { | |
| label: 'Max results', | |
| min: 1, | |
| max: 20, | |
| step: 2, | |
| showValue: true, | |
| value: 10 | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment