jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
94 lines (88 loc) • 4.45 kB
HTML
<html ng-app="demoApp" lang="en">
<head>
<title id='Description'>AngularJS Chart Area Series Example</title>
<meta name="description" content="This is an example of AngularJS Chart. Chart's type is set to Area in the sample." />
<link rel="stylesheet" type="text/css" href="../../../jqwidgets/styles/jqx.base.css" />
<script type="text/javascript" src="../../../scripts/angular.min.js"></script>
<script type="text/javascript" src="../../../scripts/jquery-1.11.1.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="../../../jqwidgets/jqxangular.js"></script>
<script type="text/javascript">
var demoApp = angular.module("demoApp", ["jqwidgets"]);
demoApp.controller("demoController", function ($scope) {
// prepare the data
var source =
{
datatype: "csv",
datafields: [
{ name: 'Date' },
{ name: 'S&P 500' },
{ name: 'NASDAQ' }
],
url: '../../sampledata/nasdaq_vs_sp500.txt'
};
var dataAdapter = new $.jqx.dataAdapter(source, { async: false, autoBind: true, loadError: function (xhr, status, error) { alert('Error loading "' + source.url + '" : ' + error); } });
var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
// prepare jqxChart settings
var settings = {
title: "U.S. Stock Market Index Performance",
description: "NASDAQ Composite compared to S&P 500",
enableAnimations: true,
showLegend: true,
enableCrosshairs: true,
padding: { left: 10, top: 5, right: 10, bottom: 25 },
titlePadding: { left: 90, top: 0, right: 0, bottom: 10 },
source: dataAdapter,
xAxis:
{
dataField: 'Date',
formatFunction: function (value) {
return months[value.getMonth()] + '\'' + value.getFullYear().toString().substring(2);
},
toolTipFormatFunction: function (value) {
return value.getDate() + '-' + months[value.getMonth()];
},
type: 'date',
baseUnit: 'month',
showTickMarks: true,
tickMarksInterval: 1,
tickMarksColor: '#888888',
unitInterval: 1,
showGridLines: true,
gridLinesInterval: 1,
gridLinesColor: '#888888',
valuesOnTicks: true
},
colorScheme: 'scheme05',
seriesGroups:
[
{
type: 'area',
alignEndPointsWithIntervals: true,
valueAxis:
{
displayValueAxis: true,
description: 'Daily Closing Price',
//descriptionClass: 'css-class-name',
axisSize: 'auto',
tickMarksColor: '#888888'
},
series: [
{ dataField: 'NASDAQ', displayText: 'NASDAQ' },
{ dataField: 'S&P 500', displayText: 'S&P 500' }
]
}
]
};
$scope.chartSettings = settings;
});
</script>
</head>
<body ng-controller="demoController">
<jqx-chart id='chartContainer' jqx-settings="chartSettings" style="width: 850px; height: 500px"></jqx-chart>
</body>
</html>