UNPKG

jqwidgets-scripts-custom

Version:

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

62 lines (53 loc) 2.16 kB
import React from 'react'; import ReactDOM from 'react-dom'; import JqxChart from '../../../jqwidgets-react/react_jqxchart.js'; class App extends React.Component { render() { let sampleData = [{ a: 0.35, b: 14.5 }, { a: 1, b: 2.5 }, { a: 10, b: 0.2 }, { a: 100, b: 205 }, { a: 1, b: 100 }, { a: 5.11, b: 10.13 }, { a: 20.13, b: 10.13 }, { a: 600, b: 300 }]; let padding = { left: 5, top: 5, right: 5, bottom: 5 }; let titlePadding = { left: 0, top: 0, right: 0, bottom: 10 }; let xAxis = { dataField: '' }; let valueAxis = { logarithmicScale: true, logarithmicScaleBase: 2, baselineValue: 8, unitInterval: 1, title: { text: 'Value' }, tickMarks: { interval: 1 }, gridLines: { interval: 1 }, labels: { formatSettings: { decimalPlaces: 3 }, horizontalAlignment: 'right' } }; let seriesGroups = [ { type: 'column', series: [ { dataField: 'a', displayText: 'A' }, { dataField: 'b', displayText: 'B' } ] }, { type: 'line', series: [ { dataField: 'a', displayText: 'A2' }, { dataField: 'b', displayText: 'B2' } ] } ]; return ( <JqxChart style={{ width: 850, height: 500 }} title={'Logarithmic Scale Axis Example'} description={'Sample logarithmic scale axis with base 2 and baseline 8'} enableAnimations={true} padding={padding} titlePadding={titlePadding} source={sampleData} xAxis={xAxis} valueAxis={valueAxis} seriesGroups={seriesGroups} /> ) } } ReactDOM.render(<App />, document.getElementById('app'));