jqwidgets-framework
Version:
jQWidgets is an advanced jQuery, Angular, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
81 lines (75 loc) • 3.35 kB
HTML
<html lang="en">
<head>
<title id='Description'>JavaScript Chart stacked waterfall series with logarithmic axis</title>
<meta name="description" content="This is an example of Javascript Chart stacked waterfall series with logarithmic axis." />
<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" src="../../jqwidgets/jqxchart.waterfall.js"></script>
<script type="text/javascript">
$(document).ready(function () {
var sampleData = [
{ a: 35, b: 40 },
{ a: 10, b: 25 },
{ a: 20, b: 20 },
{ a: 30, b: 25 },
{ a: 40, b: 17 },
{ a: 45, b: 20 },
{ a: 20, b: 30 }
//,{ c: 'summary' }
];
var settings = {
title: "Stacked waterfall series with logarithmic axis",
description: "Logarithmic base 2",
padding: { left: 5, top: 5, right: 5, bottom: 5 },
titlePadding: { left: 0, top: 0, right: 0, bottom: 10 },
source: sampleData,
xAxis:
{
gridLines: { visible: true },
tickMarks: { visible: true }
},
valueAxis: {
logarithmicScale: true,
logarithmicScaleBase: 2,
title: { text: 'Value<br>' },
labels:
{
formatSettings: { decimalPlaces: 0 },
horizontalAlignment: 'right'
}
},
seriesGroups:
[
{
type: 'stackedwaterfall',
columnsMaxWidth: 50,
series: [
{ dataField: 'a', displayText: 'A' },
{ dataField: 'b', displayText: 'B', summary: 'c' }
]
}
]
};
$('#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 stacked waterfall series with logarithmic axis.
</div>
</body>
</html>