UNPKG

jqwidgets-framework

Version:

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

96 lines (79 loc) 2.91 kB
import { Component, ViewChild, OnInit } from '@angular/core'; import { jqxChartComponent } from 'jqwidgets-ng/jqxchart'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { @ViewChild('myChart', { static: false }) myChart: jqxChartComponent; getWidth() : any { if (document.body.offsetWidth < 850) { return '90%'; } return 850; } source: any = { datatype: 'tab', datafields: [ { name: 'Year' }, { name: 'HPI' }, { name: 'BuildCost' }, { name: 'Population' }, { name: 'Rate' } ], url: './../../../sampledata/homeprices.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: 5, top: 5, right: 5, bottom: 5 }; titlePadding: any = { left: 0, top: 0, right: 0, bottom: 5 }; xAxis: any = { dataField: 'Year', unitInterval: 10, maxValue: 2010, valuesOnTicks: true, labels: { autoRotate: true } }; seriesGroups: any = [ { polar: true, radius: 120, type: 'splinearea', valueAxis: { labels: { formatSettings: { decimalPlaces: 0 }, autoRotate: true } }, series: [ { dataField: 'HPI', displayText: 'Real Home Price Index', opacity: 0.7, lineWidth: 1, radius: 2 }, { dataField: 'BuildCost', displayText: 'Building Cost Index', opacity: 0.7, lineWidth: 1, radius: 2 } ] } ]; colorsSchemesList: string[] = ['scheme01', 'scheme02', 'scheme03', 'scheme04', 'scheme05', 'scheme06', 'scheme07', 'scheme08']; seriesList: string[] = ['splinearea', 'spline', 'column', 'scatter', 'stackedcolumn', 'stackedsplinearea', 'stackedspline']; sliderStartAngle(event: any): void { const value = event.args.value; this.myChart.seriesGroups()[0].startAngle = value; this.myChart.seriesGroups()[0].endAngle = value + 360; this.myChart.update(); } sliderRadius(event: any): void { const value = event.args.value; this.myChart.seriesGroups()[0].radius = value; this.myChart.update(); } dropDownListColor(event: any): void { const value = event.args.item.value; this.myChart.colorScheme(value); } dropDownListSeries(event: any): void { const value = event.args.item.value; this.myChart.seriesGroups()[0].type = value; this.myChart.update(); } }