https://github.com/melihaltintas/blazor-knob
Knob control for Blazor
https://github.com/melihaltintas/blazor-knob
Last synced: 5 months ago
JSON representation
Knob control for Blazor
- Host: GitHub
- URL: https://github.com/melihaltintas/blazor-knob
- Owner: MelihAltintas
- Created: 2021-10-13T07:01:30.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-13T07:44:23.000Z (almost 4 years ago)
- Last Synced: 2025-03-08T22:03:41.497Z (7 months ago)
- Language: C#
- Size: 50.8 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blazor-Knob
Knob control for Blazor### Install-Package Knob
## Properties
Option | Type | Description | Default
-------|------|-------------|--------
Value | Number | Use the value attribute to set the value of the control | none
Min | Number | Minimum value of the control | 0
Max | Number | Maximum value of the control | 100
Step | Number | Smallest increment the value can change by | 1
Disabled | Boolean | Set to true to disable the knob | false
ReadOnly | Boolean | Set to true to readonly the knob | false
ShowValue | Boolean | Set to false to hide the value | true
Size | Number | Visual size of the control in `px` (or `%` if `responsive` is `true`) | 100
ValueColor | String | Color of the value arc | #409eff
RangeColor | String | Color of the range | #dcdfe6
TextColor | String | Color of the value text | #000000
StrokeWidth | Number | Thickness of the arcs | 17