The Chart component for Angular represents a lightweight and powerful chart widget. It offers many advanced features and supports three different rendering technologies - SVG, HTML5 Canvas & VML.
npm install -g @angular/cli ng new jqwidgets-project cd jqwidgets-project
ng add jqwidgets-ngAlternatively, you can use the standard installation (Manual Setup)
jQWidgets UI for Angular is distributed as jqwidgets-ng NPM package
npm install jqwidgets-ng
@import 'jqwidgets-ng/jqwidgets/styles/jqx.base.css';
"styles": [ "node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css" ]
<jqxChart #myChart
[width]="getWidth()" [height]="500"
[title]="'U.S. Stock Market Index Performance'"
[description]="'NASDAQ Composite compared to S&P 500'"
[showLegend]="true" [enableAnimations]="true" [padding]="padding"
[titlePadding]="titlePadding" [source]="dataAdapter" [xAxis]="xAxis"
[valueAxis]="valueAxis" [seriesGroups]="seriesGroups" [colorScheme]="'scheme04'">
</jqxChart>
import { Component } from '@angular/core';
import { jqxChartModule, jqxChartComponent } from 'jqwidgets-ng/jqxchart';
@Component({
selector: 'app-root',
imports: [jqxChartModule],
standalone: true,
templateUrl: './app.component.html'
})
export class AppComponent {
months: string[] = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
source: any =
{
datatype: "csv",
datafields: [
{ name: 'Date' },
{ name: 'S&P 500' },
{ name: 'NASDAQ' }
],
url: '../assets/nasdaq_vs_sp500.txt'
};
dataAdapter: any = new jqx.dataAdapter(this.source, { async: false, autoBind: true, loadError: (xhr: any, status: any, error: any) => { alert('Error loading "' + this.source.url + '" : ' + error); } });
padding: any = { left: 10, top: 5, right: 10, bottom: 5 };
titlePadding: any = { left: 50, top: 0, right: 0, bottom: 10 };
getWidth(): any {
if (document.body.offsetWidth < 850) {
return '90%';
}
return 850;
}
xAxis: any =
{
dataField: 'Date',
formatFunction: (value: any) => {
return value.getDate() + '-' + this.months[value.getMonth()] + '-' + value.getFullYear();
},
type: 'date',
baseUnit: 'month',
valuesOnTicks: true,
minValue: '01-01-2014',
maxValue: '01-01-2015',
tickMarks: {
visible: true,
interval: 1,
color: '#BCBCBC'
},
unitInterval: 1,
gridLines: {
visible: true,
interval: 3,
color: '#BCBCBC'
},
labels: {
angle: -45,
rotationPoint: 'topright',
offset: { x: 0, y: -25 }
}
};
valueAxis: any =
{
visible: true,
title: { text: 'Daily Closing Price<br>' },
tickMarks: { color: '#BCBCBC' }
};
seriesGroups: any =
[
{
type: 'line',
series: [
{ dataField: 'S&P 500', displayText: 'S&P 500' },
{ dataField: 'NASDAQ', displayText: 'NASDAQ' }
]
}
];
}