import { Component } from '@angular/core'; @Component({ selector: 'horz-vert-scrolling-demo', template: `

Horizontal and Vertical Scrolling Source

` }) export class HorzVertScrolling { rows = []; constructor() { this.fetch((data) => { this.rows = data; }); } fetch(cb) { const req = new XMLHttpRequest(); req.open('GET', `assets/data/100k.json`); req.onload = () => { cb(JSON.parse(req.response)); }; req.send(); } }