React UI Components
Show Demo List
import React from 'react';import ReactDOM from 'react-dom';import JqxChart from '../../../jqwidgets-react/react_jqxchart.js';class App extends React.Component {
render() {
let source =
{
datatype: "tab",
datafields: [
{ name: 'Year' },
{ name: 'HPI' },
{ name: 'BuildCost' },
{ name: 'Population' },
{ name: 'Rate' }
],
url: '../sampledata/homeprices.txt'
};
let dataAdapter = new $.jqx.dataAdapter(source, { async: false, autoBind: true, loadError: (xhr, status, error) => { alert('Error loading "' + source.url + '" : ' + error); } });
let padding = { left: 5, top: 5, right: 25, bottom: 5 };
let titlePadding = { left: 90, top: 0, right: 0, bottom: 10 };
let xAxis =
{
dataField: 'Year',
minValue: 1947,
maxValue: 2012,
unitInterval: 5,
tickMarks: {
visible: true,
interval: 1
},
gridLines: {
visible: true,
interval: 5
}
};
let seriesGroups =
[
{
type: 'line',
valueAxis:
{
unitInterval: 10,
padding: { left: 10 },
title: { text: 'U.S. Population (millions)<br>' },
gridLines: { visible: false }
},
series: [
{ dataField: 'Population', displayText: 'Population' }
]
},
{
type: 'spline',
valueAxis:
{
unitInterval: 1,
visible: false
},
series: [
{ dataField: 'Rate', displayText: 'Interest Rate' }
]
},
{
type: 'spline',
valueAxis:
{
unitInterval: 20,
title: { text: 'Index Value<br>' },
labels: {
horizontalAlignment: 'right',
formatSettings: { decimalPlaces: 0 }
}
},
series: [
{ dataField: 'HPI', displayText: 'Real Home Price Index' },
{ dataField: 'BuildCost', displayText: 'Building Cost Index' }
]
}
];
return (
<JqxChart style={{ width: 850, height: 500 }}
title={'U.S. Historical Home Prices (1950-2011)'} description={'Source: http://www.econ.yale.edu/~shiller/data.htm'}
showLegend={true} enableAnimations={true} padding={padding}
titlePadding={titlePadding} source={dataAdapter} xAxis={xAxis}
colorScheme={'scheme04'} seriesGroups={seriesGroups}
/>
)
}
}
ReactDOM.render(<App />, document.getElementById('app'));