UNPKG

jqwidgets-framework

Version:

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

40 lines (34 loc) 1.14 kB
import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { source: any = { datatype: 'tab', datafields: [ { name: 'Year', type: 'int' }, { name: 'HPI', type: 'float' }, { name: 'BuildCost', type: 'float' }, { name: 'Population', type: 'float' }, { name: 'Rate', type: 'float' } ], url: './../../../sampledata/homeprices.txt' }; getWidth() : any { if (document.body.offsetWidth < 850) { return '90%'; } return 850; } dataAdapter: any = new jqx.dataAdapter(this.source); columns: any[] = [ { text: 'Year', dataField: 'Year', width: 200 }, { text: 'HPI', dataField: 'HPI', cellsFormat: 'f2', width: 200 }, { text: 'Build Cost', dataField: 'BuildCost', cellsFormat: 'f2', width: 180 }, { text: 'Population', dataField: 'Population', cellsFormat: 'f2', width: 100 }, { text: 'Rate', dataField: 'Rate', cellsFormat: 'f5' } ]; }