UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

73 lines (68 loc) 3.66 kB
<!DOCTYPE html> <html ng-app="demoApp" lang="en"> <head> <title id='Description'>AngularJS Chart Negative Bar Series Example</title> <meta name="description" content="This is an example of AngularJS Chart. Chart Negative Bar Series." /> <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 chart data var sampleData = [ { Country: 'Switzerland', Inflation2012: -0.95, Inflation2011: -0.72 }, { Country: 'USA', Inflation2012: 2.35, Inflation2011: 2.96 }, { Country: 'Germany', Inflation2012: 2.03, Inflation2011: 2.10 }, { Country: 'India', Inflation2012: 8.38, Inflation2011: 6.49 }, { Country: 'China', Inflation2012: 3.34, Inflation2011: 4.06 }, { Country: 'Canada', Inflation2012: 2.05, Inflation2011: 2.30}]; // prepare jqxChart settings var settings = { title: "CPI inflation comparison by country", description: "Years: 2011 vs 2012", showLegend: true, enableAnimations: true, padding: { left: 20, top: 5, right: 20, bottom: 5 }, titlePadding: { left: 90, top: 0, right: 0, bottom: 10 }, source: sampleData, xAxis: { dataField: 'Country', showGridLines: true }, colorScheme: 'scheme02', seriesGroups: [ { type: 'column', orientation: 'horizontal', // render values on X-axis columnsGapPercent: 50, valueAxis: { displayValueAxis: true, description: '', unitInterval: 1, minValue: -5, maxValue: 10, formatSettings: { sufix: '%' } }, toolTipFormatSettings: { sufix: '%' }, series: [ { dataField: 'Inflation2012', displayText: 'Inflation 2012' }, { dataField: 'Inflation2011', displayText: 'Inflation 2011' } ] } ] }; $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>