Smart UI Components & Libraries – Grid, Scheduler, Gantt, Kanban for Angular, React, Next.js, Vue, Blazor, JavaScript › Forums › Gantt › Could someone please assist me with: Gantt? Thanks in advance! This topic has 1 reply, 2 voices, and was last updated 3 months, 2 weeks ago by Markov. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts July 21, 2025 at 1:53 pm #112695 alex.morris22Participant Can I use Smart Gantt with a REST API in Angular? July 21, 2025 at 5:40 pm #112698 MarkovKeymaster Hi, Sure, follow https://www.htmlelements.com/docs/gantt/ to get started. Then, connect to a REST API using Angular’s HttpClient import { HttpClient } from '@angular/common/http'; tasks: any[] = []; constructor(private http: HttpClient) {} ngOnInit(): void { this.http.get<any[]>('https://your-api.com/gantt-data').subscribe(data => { this.tasks = data; }); } hope this helps. Regards, Markov Smart UI team https://www.htmlelements.com/ Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In With Google Log In