jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
140 lines (133 loc) • 6.34 kB
HTML
<html lang="en">
<head>
<title id='Description'>JavaScript Chart Axis Position Example</title>
<meta name="description" content="This is an example of JavaScript Chart Axis Position." />
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" />
<script type="text/javascript" src="../../../scripts/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdata.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdraw.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxchart.core.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<script type="text/javascript">
$(document).ready(function () {
// prepare the data
var source =
{
datatype: "tab",
datafields: [
{ name: 'Year' },
{ name: 'HPI' },
{ name: 'BuildCost' },
{ name: 'Population' },
{ name: 'Rate' }
],
url: '../../sampledata/homeprices.txt'
};
var dataAdapter = new $.jqx.dataAdapter(source, { async: false, autoBind: true, loadError: function (xhr, status, error) { alert('Error loading "' + source.url + '" : ' + error); } });
// prepare jqxChart settings
var settings = {
title: "U.S. Historical Home Prices (1950-2017)",
description: "Source: http://www.econ.yale.edu/~shiller/data.htm",
enableAnimations: true,
showLegend: true,
padding: { left: 20, top: 5, right: 20, bottom: 5 },
titlePadding: { left: 10, top: 0, right: 0, bottom: 10 },
source: dataAdapter,
xAxis:
{
dataField: 'Year',
minValue: 1947,
maxValue: 2017,
unitInterval: 5,
tickMarks: {
visible: true,
interval: 1,
dashStyle: '1,2'
},
gridLines: {
visible: true,
interval: 5,
dashStyle: '1,3'
}
},
colorScheme: 'scheme04',
seriesGroups:
[
{
type: 'line',
valueAxis:
{
unitInterval: 20,
maxValue: 400,
title: { text: 'U.S. Population (millions)' },
gridLines: { visible: false }
},
series: [
{ dataField: 'Population', displayText: 'Population' }
]
},
{
type: 'spline',
valueAxis:
{
title: { text: 'Interest rate' },
position: 'right',
unitInterval: 0.01,
maxValue: 0.2,
visible: true,
gridLines: { visible: false },
labels: {
horizontalAlignment: 'left'
}
},
series: [
{ dataField: 'Rate', displayText: 'Interest Rate' }
]
},
{
type: 'spline',
valueAxis:
{
title: { text: 'Index Value' },
position: 'right',
unitInterval: 20,
maxValue: 200,
gridLines: { visible: false },
labels: {
formatSettings:
{
decimalPlaces: 0
},
horizontalAlignment: 'left'
}
},
series: [
{ dataField: 'HPI', displayText: 'Real Home Price Index' },
{ dataField: 'BuildCost', displayText: 'Building Cost Index' }
]
}
]
};
// setup the chart
$('#chartContainer').jqxChart(settings);
});
</script>
</head>
<body class='default'>
<div id='chartContainer' style="width:850px; height:500px">
</div>
<div class="example-description">
<br />
<h2>Description</h2>
<br />
This is an example of JavaScript chart axis position. You can see that each of the series is presented with its own value axis which is formatted accordingly. The x axis is common for all the series.
</div>
<div style="position: absolute; bottom: 5px; right: 5px;">
<a href="https://www.jqwidgets.com/" alt="https://www.jqwidgets.com/"><img alt="https://www.jqwidgets.com/" title="https://www.jqwidgets.com/" src="https://www.jqwidgets.com/wp-content/design/i/logo-jqwidgets.png"/></a>
</div>
</body>
</html>