0.0.9 • Published 3 years ago
ngx-timeline-view v0.0.9
NgxTimelineView
An Angular timeline component.
Installation
Install package
npm i ngx-timeline-viewImport module
import { NgxTimelineViewModule } from 'ngx-timeline-view';
@NgModule({
imports: [NgxTimelineViewModule]
})Usage
HTML
<ngx-timeline-view [events]="events"></ngx-timeline-view>TypeScript
import { TimelineEvent } from 'ngx-timeline-view';
events: TimelineEvent[] = [
{ date: new Date('11/15/22'), content: 'A timeline event' },
{ date: new Date('8/3/22'), content: 'Another timeline event' }
];Properties
| Name | Type | Description |
|---|---|---|
| events | TimelineEvent[] | Array of timeline events |
| isTimeSince | boolean | Changes date to time since |
| circleColor | string | Changes color of the circle |