Hi,
I’m using Angular 6 project with setup using Angular CLI.
I followed the documentation (Angular) and added jqxBarGauge to my project. ( follow : https://www.jqwidgets.com/angular-components-documentation/documentation/angular-cli/angular-cli.htm?search=)
now, I want to add jqxSchedule to my project, but not successfully.
I used code:
import { Component } from ‘@angular/core’;
import { jqxSchedulerComponent } from ‘../assets/jqwidgets-ts/angular_jqxscheduler’;
Mark a class as an Angular component through the @Component decorator:
@Component({
selector: “app-root”,
template: `
<jqxScheduler #schedulerReference
[date]=”date” [width]=”800″ [height]=”600″ [source]=”dataAdapter” [showLegend]=”true” [view]=”‘weekView'”
[appointmentDataFields]=”appointmentDataFields” [resources]=”resources” [views]=”views”>
</jqxScheduler>`
})
not found jqxScheduler in “../assets/jqwidgets-ts/angular_jqxscheduler”. All jqwidgets, i download them by npm, and them were in node_modules directory, not in assets.
Pls help me used jqxSchedule in my project.
Thank you very much.
Best Regards,