<dx-scheduler
[dataSource]="appointmentsData"
[views]="views"
currentView="day"
[startDayHour]="8"
[endDayHour]="20"
[currentDate]="currentDate"
[height]="580">
<dxi-view
name="3 Days"
type="day"
[intervalCount]="3"
[startDate]="daysViewStartDate">
</dxi-view>
<dxi-view
name="2 Work Weeks"
type="workWeek"
[intervalCount]="2"
[startDate]="weeksViewStartDate">
</dxi-view>
<dxi-view
name="2 Months"
type="month"
[intervalCount]="2">
</dxi-view>
</dx-scheduler>
import { NgModule, Component, enableProdMode } from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
import {Appointment, Service} from './app.service';
import {DxSchedulerModule} from 'devextreme-angular';
if(!/localhost/.test(document.location.host)) {
enableProdMode();
}
@Component({
styleUrls: ['app/app.component.css'],
selector: 'demo-app',
templateUrl: 'app/app.component.html',
providers: [Service]
})
export class AppComponent {
appointmentsData: Appointment[];
currentDate: Date = new Date(2017, 4, 1);
daysViewStartDate: Date = new Date(2017, 3, 30);
weeksViewStartDate: Date = new Date(2017, 3, 3);
constructor(service: Service) {
this.appointmentsData = service.getAppointments();
}
}
@NgModule({
imports: [
BrowserModule,
DxSchedulerModule
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}
platformBrowserDynamic().bootstrapModule(AppModule)
import { Injectable } from "@angular/core";
export class Appointment {
text: string;
startDate: Date;
endDate: Date;
}
let appointments: Appointment[] = [{
text: "Google AdWords Strategy",
startDate: new Date(2017, 4, 1, 9, 0, 0),
endDate: new Date(2017, 4, 1, 10, 30, 0)
}, {
text: "New Brochures",
startDate: new Date(2017, 4, 1, 11, 30, 0),
endDate: new Date(2017, 4, 1, 14, 15, 0)
}, {
text: "Brochure Design Review",
startDate: new Date(2017, 4, 30, 10, 15, 0),
endDate: new Date(2017, 4, 30, 12, 15, 0)
}, {
text: "Website Re-Design Plan",
startDate: new Date(2017, 4, 1, 16, 45, 0),
endDate: new Date(2017, 4, 2, 17, 15, 0)
}, {
text: "Rollout of New Website and Marketing Brochures",
startDate: new Date(2017, 4, 2, 8, 15, 0),
endDate: new Date(2017, 4, 2, 10, 45, 0)
}, {
text: "Update Sales Strategy Documents",
startDate: new Date(2017, 4, 31, 9, 0, 0),
endDate: new Date(2017, 4, 31, 10, 45, 0)
}, {
text: "Non-Compete Agreements",
startDate: new Date(2017, 4, 3, 8, 15, 0),
endDate: new Date(2017, 4, 3, 9, 0, 0)
}, {
text: "Approve Hiring of John Jeffers",
startDate: new Date(2017, 4, 3, 10, 0, 0),
endDate: new Date(2017, 4, 3, 11, 15, 0)
}, {
text: "Update NDA Agreement",
startDate: new Date(2017, 5, 1, 9, 45, 0),
endDate: new Date(2017, 5, 1, 11, 45, 0)
}, {
text: "Update Employee Files with New NDA",
startDate: new Date(2017, 5, 1, 12, 0, 0),
endDate: new Date(2017, 5, 1, 14, 45, 0)
}, {
text: "Submit Questions Regarding New NDA",
startDate: new Date(2017, 4, 4, 8, 0, 0),
endDate: new Date(2017, 4, 4, 9, 30, 0)
}, {
text: "Submit Signed NDA",
startDate: new Date(2017, 5, 5, 9, 45, 0),
endDate: new Date(2017, 5, 5, 11, 0, 0)
}, {
text: "Review Revenue Projections",
startDate: new Date(2017, 4, 4, 17, 15, 0),
endDate: new Date(2017, 4, 4, 18, 0, 0)
}, {
text: "Comment on Revenue Projections",
startDate: new Date(2017, 4, 5, 9, 15, 0),
endDate: new Date(2017, 4, 5, 11, 15, 0)
}, {
text: "Provide New Health Insurance Docs",
startDate: new Date(2017, 5, 6, 9, 15, 0),
endDate: new Date(2017, 5, 6, 10, 45, 0)
}, {
text: "Review Changes to Health Insurance Coverage",
startDate: new Date(2017, 5, 6, 10, 50, 0),
endDate: new Date(2017, 5, 6, 12, 30, 0)
}, {
text: "Review Training Course for any Ommissions",
startDate: new Date(2017, 4, 8, 14, 0, 0),
endDate: new Date(2017, 4, 9, 14, 0, 0)
}, {
text: "Recall Rebate Form",
startDate: new Date(2017, 5, 7, 10, 0, 0),
endDate: new Date(2017, 5, 7, 11, 15, 0)
}, {
text: "Create Report on Customer Feedback",
startDate: new Date(2017, 4, 9, 15, 15, 0),
endDate: new Date(2017, 4, 9, 17, 30, 0)
}, {
text: "Review Customer Feedback Report",
startDate: new Date(2017, 4, 9, 16, 15, 0),
endDate: new Date(2017, 4, 9, 18, 30, 0)
}, {
text: "Customer Feedback Report Analysis",
startDate: new Date(2017, 4, 10, 9, 30, 0),
endDate: new Date(2017, 4, 10, 10, 30, 0)
}, {
text: "Prepare Shipping Cost Analysis Report",
startDate: new Date(2017, 5, 8, 11, 30, 0),
endDate: new Date(2017, 5, 8, 12, 30, 0)
}, {
text: "Provide Feedback on Shippers",
startDate: new Date(2017, 5, 9, 10, 15, 0),
endDate: new Date(2017, 5, 9, 12, 0, 0)
}, {
text: "Select Preferred Shipper",
startDate: new Date(2017, 5, 9, 12, 30, 0),
endDate: new Date(2017, 5, 9, 14, 0, 0)
}, {
text: "Complete Shipper Selection Form",
startDate: new Date(2017, 5, 12, 8, 30, 0),
endDate: new Date(2017, 5, 12, 10, 0, 0)
}, {
text: "Upgrade Server Hardware",
startDate: new Date(2017, 4, 11, 12, 0, 0),
endDate: new Date(2017, 4, 11, 14, 15, 0)
}, {
text: "Upgrade Personal Computers",
startDate: new Date(2017, 4, 11, 14, 45, 0),
endDate: new Date(2017, 4, 11, 16, 30, 0)
}, {
text: "Upgrade Apps to Windows RT or stay with WinForms",
startDate: new Date(2017, 4, 12, 10, 30, 0),
endDate: new Date(2017, 4, 12, 13, 0, 0)
}, {
text: "Estimate Time Required to Touch-Enable Apps",
startDate: new Date(2017, 5, 13, 9, 45, 0),
endDate: new Date(2017, 5, 13, 11, 0, 0)
}, {
text: "Report on Tranistion to Touch-Based Apps",
startDate: new Date(2017, 5, 14, 11, 30, 0),
endDate: new Date(2017, 5, 14, 12, 30, 0)
}, {
text: "Submit New Website Design",
startDate: new Date(2017, 4, 15, 8, 0, 0),
endDate: new Date(2017, 4, 15, 10, 0, 0)
}, {
text: "Create Icons for Website",
startDate: new Date(2017, 5, 15, 11, 30, 0),
endDate: new Date(2017, 5, 15, 13, 15, 0)
}, {
text: "Create New Product Pages",
startDate: new Date(2017, 4, 16, 9, 45, 0),
endDate: new Date(2017, 4, 16, 11, 45, 0)
}, {
text: "Approve Website Launch",
startDate: new Date(2017, 5, 16, 12, 0, 0),
endDate: new Date(2017, 5, 16, 15, 15, 0)
}, {
text: "Update Customer Shipping Profiles",
startDate: new Date(2017, 4, 17, 9, 30, 0),
endDate: new Date(2017, 4, 17, 11, 0, 0)
}, {
text: "Create New Shipping Return Labels",
startDate: new Date(2017, 4, 17, 12, 45, 0),
endDate: new Date(2017, 4, 17, 14, 0, 0)
}, {
text: "Get Design for Shipping Return Labels",
startDate: new Date(2017, 4, 17, 15, 0, 0),
endDate: new Date(2017, 4, 17, 16, 30, 0)
}, {
text: "PSD needed for Shipping Return Labels",
startDate: new Date(2017, 4, 18, 8, 30, 0),
endDate: new Date(2017, 4, 18, 9, 15, 0)
}, {
text: "Contact ISP and Discuss Payment Options",
startDate: new Date(2017, 5, 19, 11, 30, 0),
endDate: new Date(2017, 5, 19, 16, 0, 0)
}, {
text: "Prepare Year-End Support Summary Report",
startDate: new Date(2017, 5, 19, 10, 0, 0),
endDate: new Date(2017, 5, 19, 12, 0, 0)
}, {
text: "Review New Training Material",
startDate: new Date(2017, 4, 22, 8, 0, 0),
endDate: new Date(2017, 4, 22, 9, 15, 0)
}, {
text: "Distribute Training Material to Support Staff",
startDate: new Date(2017, 4, 19, 12, 45, 0),
endDate: new Date(2017, 4, 19, 14, 0, 0)
}, {
text: "Training Material Distribution Schedule",
startDate: new Date(2017, 5, 20, 14, 15, 0),
endDate: new Date(2017, 5, 20, 16, 15, 0)
}, {
text: "Approval on Converting to New HDMI Specification",
startDate: new Date(2017, 4, 29, 9, 30, 0),
endDate: new Date(2017, 4, 29, 10, 15, 0)
}, {
text: "Create New Spike for Automation Server",
startDate: new Date(2017, 5, 21, 10, 0, 0),
endDate: new Date(2017, 5, 21, 12, 30, 0)
}, {
text: "Code Review - New Automation Server",
startDate: new Date(2017, 5, 21, 13, 0, 0),
endDate: new Date(2017, 5, 21, 15, 0, 0)
}, {
text: "Confirm Availability for Sales Meeting",
startDate: new Date(2017, 4, 23, 10, 15, 0),
endDate: new Date(2017, 4, 23, 15, 15, 0)
}, {
text: "Reschedule Sales Team Meeting",
startDate: new Date(2017, 4, 24, 16, 15, 0),
endDate: new Date(2017, 4, 24, 18, 0, 0)
}, {
text: "Send 2 Remotes for Giveaways",
startDate: new Date(2017, 5, 22, 9, 30, 0),
endDate: new Date(2017, 5, 22, 11, 45, 0)
}, {
text: "Discuss Product Giveaways with Management",
startDate: new Date(2017, 5, 23, 12, 15, 0),
endDate: new Date(2017, 5, 23, 16, 45, 0)
}, {
text: "Replace Desktops on the 3rd Floor",
startDate: new Date(2017, 4, 25, 9, 30, 0),
endDate: new Date(2017, 4, 25, 10, 45, 0)
}, {
text: "Update Database with New Leads",
startDate: new Date(2017, 5, 26, 12, 0, 0),
endDate: new Date(2017, 5, 26, 14, 15, 0)
}, {
text: "Mail New Leads for Follow Up",
startDate: new Date(2017, 5, 27, 14, 45, 0),
endDate: new Date(2017, 5, 27, 15, 30, 0)
}, {
text: "Send Territory Sales Breakdown",
startDate: new Date(2017, 4, 25, 18, 0, 0),
endDate: new Date(2017, 4, 25, 20, 0, 0)
}, {
text: "Territory Sales Breakdown Report",
startDate: new Date(2017, 4, 26, 8, 45, 0),
endDate: new Date(2017, 4, 26, 9, 45, 0)
}, {
text: "Report on the State of Engineering Dept",
startDate: new Date(2017, 4, 26, 14, 45, 0),
endDate: new Date(2017, 4, 26, 15, 30, 0)
}, {
text: "Staff Productivity Report",
startDate: new Date(2017, 5, 27, 16, 15, 0),
endDate: new Date(2017, 5, 27, 19, 30, 0)
}];
@Injectable()
export class Service {
getAppointments(){
return appointments;
}
}
// In real applications, you should not transpile code in the browser. You can see how to create your own application with Angular and DevExtreme here:
// https://js.devexpress.com/Documentation/Guide/Angular_Components/Getting_Started/Create_a_DevExtreme_Application/
System.config({
transpiler: 'ts',
typescriptOptions: {
module: "commonjs",
emitDecoratorMetadata: true,
experimentalDecorators: true
},
meta: {
'typescript': {
"exports": "ts"
}
},
paths: {
'npm:': 'https://unpkg.com/'
},
map: {
'ts': 'npm:plugin-typescript@8.0.0/lib/plugin.js',
'typescript': 'npm:typescript@3.4.5/lib/typescript.js',
'@angular/core': 'npm:@angular/core@8.0.0/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common@8.0.0/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler@8.0.0/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser@8.0.0/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic@8.0.0/bundles/platform-browser-dynamic.umd.js',
'@angular/router': 'npm:@angular/router@8.0.0/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms@8.0.0/bundles/forms.umd.js',
'@angular/common/http': 'npm:@angular/common@8.0.0/bundles/common-http.umd.js',
'tslib': 'npm:tslib/tslib.js',
'rxjs': 'npm:rxjs@6.3.3',
'rxjs/operators': 'npm:rxjs@6.3.3/operators',
'devextreme': 'npm:devextreme@19.2',
'jszip': 'npm:jszip@3.1.3/dist/jszip.min.js',
'quill': 'npm:quill@1.3.7/dist/quill.js',
'devexpress-diagram': 'npm:devexpress-diagram',
'devexpress-gantt': 'npm:devexpress-gantt',
'devextreme-angular': 'npm:devextreme-angular@19.2'
},
packages: {
'app': {
main: './app.component.ts',
defaultExtension: 'ts'
},
'devextreme': {
defaultExtension: 'js'
},
'rxjs': { main: 'index.js', defaultExtension: 'js' },
'rxjs/operators': { main: 'index.js', defaultExtension: 'js' },
'devextreme-angular': {
main: 'index.js',
defaultExtension: 'js'
}
}
});
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/19.2.4/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/19.2.4/css/dx.light.css" />
<script src="https://unpkg.com/core-js@2.4.1/client/shim.min.js"></script>
<script src="https://unpkg.com/zone.js@0.6.25/dist/zone.js"></script>
<script src="https://unpkg.com/reflect-metadata@0.1.3/Reflect.js"></script>
<script src="https://unpkg.com/systemjs@0.21.3/dist/system.js"></script>
<script src="config.js"></script>
<script>
System.import('app').catch(console.error.bind(console));
</script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<demo-app>Loading...</demo-app>
</div>
</body>
</html>