UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

82 lines (72 loc) 2.82 kB
import React from 'react'; import ReactDOM from 'react-dom'; import JqxKnob from '../../../jqwidgets-react/react_jqxknob.js'; class App extends React.Component { render() { let marks = { colorRemaining: { color: '#373636', border: '#373636' }, colorProgress: { color: '#373636', border: '#373636' }, type: 'line', offset: '71%', thickness: 1, size: '6%', majorSize: '9%', majorInterval: 10, minorInterval: 2 }; let labels = { offset: '88%', step: 10, visible: true, formatFunction: (label) => { if (label == 0) return 'Min'; if (label == 100) return 'Max'; return label; } }; let progressBar = { size: '20%', offset: '50%', innerRadius: '50%', outerRadius: '70%', style: [ { stroke: '#285a83', strokeWidth: 1, fill: { color: '#285a83', gradientType: 'linear', gradientStops: [[0, 1], [50, 0.5], [100, 1]] } }, { stroke: '#285a83', strokeWidth: 1, fill: { color: '#285a83', gradientType: 'linear', gradientStops: [[0, 1], [50, 0.5], [100, 1]] } } ], background: { stroke: '#ff6126', strokeWidth: 1, fill: { color: '#ff6126', gradientType: 'linear', gradientStops: [[0, 1], [50, 0.5], [100, 1]] } } }; let pointer = [ { type: 'arrow', style: { fill: '#ff6126', stroke: '#ff6126' }, size: '50%', offset: '30%', thickness: 30, }, { type: 'arrow', style: { fill: '#ff6126', stroke: '#ff6126' }, size: '50%', offset: '30%', thickness: 30 } ]; let spinner = { size: '20%', offset: '30%', innerRadius: '0%', outerRadius: '30%', style: { stroke: '#285a83', strokeWidth: 1, fill: { color: '#285a83', gradientType: 'linear', gradientStops: [[0, 1], [50, 0.5], [100, 1]] } } }; return ( <JqxKnob min={0} max={100} value={[40, 80]} startAngle={120} endAngle={480} dragStartAngle={120} dragEndAngle={420} rotation={'clockwise'} snapToStep={true} spinner={spinner} marks={marks} labels={labels} progressBar={progressBar} pointer={pointer} /> ) } } ReactDOM.render(<App />, document.getElementById('app'));