<dx-scheduler
[dataSource]="appointmentsData"
[views]='["timelineDay", "timelineWeek", "timelineWorkWeek", "timelineMonth"]'
currentView="timelineMonth"
[firstDayOfWeek]="0"
[startDayHour]="8"
[endDayHour]="20"
[cellDuration]="60"
[groups]="['priority']"
[currentDate]="currentDate"
[height]="580">
<dxi-resource
fieldExpr="ownerId"
[allowMultiple]="true"
[dataSource]="resourcesData"
label="Owner"
[useColorAsDefault]="true"
></dxi-resource>
<dxi-resource
fieldExpr="priority"
[allowMultiple]="false"
[dataSource]="prioritiesData"
label="Priority"
></dxi-resource>
</dx-scheduler>
import { NgModule, Component, enableProdMode } from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
import {Priority, Resource, 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[];
resourcesData: Resource[];
prioritiesData: Priority[];
currentDate: Date = new Date(2017, 4, 1);
constructor(service: Service) {
this.appointmentsData = service.getAppointments();
this.resourcesData = service.getResources();
this.prioritiesData = service.getPriorities();
}
}
@NgModule({
imports: [
BrowserModule,
DxSchedulerModule
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}
platformBrowserDynamic().bootstrapModule(AppModule)
import { Injectable } from "@angular/core";
export class Priority {
text: string;
id: number;
color: string;
}
export class Resource {
text: string;
id: number;
color: string;
}
export class Appointment {
text: string;
ownerId: number[];
priority: number;
startDate: Date;
endDate: Date;
}
let prioritiesData: Priority[] = [
{
text: "Low Priority",
id: 1,
color: "#1e90ff"
}, {
text: "High Priority",
id: 2,
color: "#ff9747"
}
];
let resourcesData: Resource[] = [
{
text: "Samantha Bright",
id: 1,
color: "#cb6bb2"
}, {
text: "John Heart",
id: 2,
color: "#56ca85"
}, {
text: "Todd Hoffman",
id: 3,
color: "#1e90ff"
}, {
text: "Sandra Johnson",
id: 4,
color: "#ff9747"
}
]
let appointments: Appointment[] = [{
"text": "Google AdWords Strategy",
"ownerId": [2],
"startDate": new Date(2017, 4, 1, 9, 0),
"endDate": new Date(2017, 4, 1, 10, 30),
"priority": 1
}, {
"text": "New Brochures",
"ownerId": [1],
"startDate": new Date(2017, 4, 1, 11, 30),
"endDate": new Date(2017, 4, 1, 14, 15),
"priority": 2
}, {
"text": "Brochure Design Review",
"ownerId": [4],
"startDate": new Date(2017, 4, 1, 13, 15),
"endDate": new Date(2017, 4, 1, 16, 15),
"priority": 1
}, {
"text": "Website Re-Design Plan",
"ownerId": [3],
"startDate": new Date(2017, 4, 1, 16, 45),
"endDate": new Date(2017, 4, 2, 11, 15),
"priority": 2
}, {
"text": "Rollout of New Website and Marketing Brochures",
"ownerId": [1],
"startDate": new Date(2017, 4, 2, 8, 15),
"endDate": new Date(2017, 4, 2, 10, 45),
"priority": 2
}, {
"text": "Update Sales Strategy Documents",
"ownerId": [2],
"startDate": new Date(2017, 4, 2, 12, 0),
"endDate": new Date(2017, 4, 2, 13, 45),
"priority": 1
}, {
"text": "Non-Compete Agreements",
"ownerId": [4],
"startDate": new Date(2017, 4, 3, 8, 15),
"endDate": new Date(2017, 4, 3, 9, 0),
"priority": 1
}, {
"text": "Approve Hiring of John Jeffers",
"ownerId": [2],
"startDate": new Date(2017, 4, 3, 10, 0),
"endDate": new Date(2017, 4, 3, 11, 15),
"priority": 2
}, {
"text": "Update NDA Agreement",
"ownerId": [1],
"startDate": new Date(2017, 4, 3, 11, 45),
"endDate": new Date(2017, 4, 3, 13, 45),
"priority": 2
}, {
"text": "Update Employee Files with New NDA",
"ownerId": [2],
"startDate": new Date(2017, 4, 3, 14, 0),
"endDate": new Date(2017, 4, 3, 16, 45),
"priority": 1
}, {
"text": "Submit Questions Regarding New NDA",
"ownerId": [1],
"startDate": new Date(2017, 4, 4, 8, 0),
"endDate": new Date(2017, 4, 4, 9, 30),
"priority": 1
}, {
"text": "Submit Signed NDA",
"ownerId": [2],
"startDate": new Date(2017, 4, 4, 12, 45),
"endDate": new Date(2017, 4, 4, 14, 0),
"priority": 1
}, {
"text": "Review Revenue Projections",
"ownerId": [3],
"startDate": new Date(2017, 4, 4, 17, 15),
"endDate": new Date(2017, 4, 4, 18, 0),
"priority": 2
}, {
"text": "Comment on Revenue Projections",
"ownerId": [2],
"startDate": new Date(2017, 4, 5, 9, 15),
"endDate": new Date(2017, 4, 5, 11, 15),
"priority": 1
}, {
"text": "Provide New Health Insurance Docs",
"ownerId": [3],
"startDate": new Date(2017, 4, 5, 12, 45),
"endDate": new Date(2017, 4, 5, 14, 15),
"priority": 2
}, {
"text": "Review Changes to Health Insurance Coverage",
"ownerId": [2],
"startDate": new Date(2017, 4, 5, 14, 15),
"endDate": new Date(2017, 4, 5, 15, 30),
"priority": 1
}, {
"text": "Review Training Course for any Ommissions",
"ownerId": [2],
"startDate": new Date(2017, 4, 8, 14, 0),
"endDate": new Date(2017, 4, 9, 12, 0),
"priority": 2
}, {
"text": "Recall Rebate Form",
"ownerId": [1],
"startDate": new Date(2017, 4, 8, 12, 45),
"endDate": new Date(2017, 4, 8, 13, 15),
"priority": 1
}, {
"text": "Create Report on Customer Feedback",
"ownerId": [4],
"startDate": new Date(2017, 4, 9, 15, 15),
"endDate": new Date(2017, 4, 9, 17, 30),
"priority": 2
}, {
"text": "Review Customer Feedback Report",
"ownerId": [2],
"startDate": new Date(2017, 4, 9, 16, 15),
"endDate": new Date(2017, 4, 9, 18, 30),
"priority": 1
}, {
"text": "Customer Feedback Report Analysis",
"ownerId": [3],
"startDate": new Date(2017, 4, 10, 9, 30),
"endDate": new Date(2017, 4, 10, 10, 30),
"priority": 1
}, {
"text": "Prepare Shipping Cost Analysis Report",
"ownerId": [4],
"startDate": new Date(2017, 4, 10, 12, 30),
"endDate": new Date(2017, 4, 10, 13, 30),
"priority": 1
}, {
"text": "Provide Feedback on Shippers",
"ownerId": [2],
"startDate": new Date(2017, 4, 10, 14, 15),
"endDate": new Date(2017, 4, 10, 16, 0),
"priority": 2
}, {
"text": "Select Preferred Shipper",
"ownerId": [1],
"startDate": new Date(2017, 4, 10, 17, 30),
"endDate": new Date(2017, 4, 10, 20, 0),
"priority": 1
}, {
"text": "Complete Shipper Selection Form",
"ownerId": [2],
"startDate": new Date(2017, 4, 11, 8, 30),
"endDate": new Date(2017, 4, 11, 10, 0),
"priority": 2
}, {
"text": "Upgrade Server Hardware",
"ownerId": [4],
"startDate": new Date(2017, 4, 11, 12, 0),
"endDate": new Date(2017, 4, 11, 14, 15),
"priority": 1
}, {
"text": "Upgrade Personal Computers",
"ownerId": [3],
"startDate": new Date(2017, 4, 11, 14, 45),
"endDate": new Date(2017, 4, 11, 16, 30),
"priority": 1
}, {
"text": "Upgrade Apps to Windows RT or stay with WinForms",
"ownerId": [1],
"startDate": new Date(2017, 4, 12, 10, 30),
"endDate": new Date(2017, 4, 12, 13, 0),
"priority": 1
}, {
"text": "Estimate Time Required to Touch-Enable Apps",
"ownerId": [1],
"startDate": new Date(2017, 4, 12, 14, 45),
"endDate": new Date(2017, 4, 12, 16, 30),
"priority": 1
}, {
"text": "Report on Tranistion to Touch-Based Apps",
"ownerId": [2],
"startDate": new Date(2017, 4, 12, 18, 30),
"endDate": new Date(2017, 4, 12, 19, 0),
"priority": 1
}, {
"text": "Submit New Website Design",
"ownerId": [2],
"startDate": new Date(2017, 4, 15, 8, 0),
"endDate": new Date(2017, 4, 15, 10, 0),
"priority": 2
}, {
"text": "Create Icons for Website",
"ownerId": [4],
"startDate": new Date(2017, 4, 15, 11, 30),
"endDate": new Date(2017, 4, 15, 13, 15),
"priority": 1
}, {
"text": "Create New Product Pages",
"ownerId": [1],
"startDate": new Date(2017, 4, 16, 9, 45),
"endDate": new Date(2017, 4, 16, 11, 45),
"priority": 2
}, {
"text": "Approve Website Launch",
"ownerId": [3],
"startDate": new Date(2017, 4, 16, 12, 0),
"endDate": new Date(2017, 4, 16, 15, 15),
"priority": 1
}, {
"text": "Update Customer Shipping Profiles",
"ownerId": [3],
"startDate": new Date(2017, 4, 17, 9, 30),
"endDate": new Date(2017, 4, 17, 11, 0),
"priority": 1
}, {
"text": "Create New Shipping Return Labels",
"ownerId": [4],
"startDate": new Date(2017, 4, 17, 12, 45),
"endDate": new Date(2017, 4, 17, 14, 0),
"priority": 1
}, {
"text": "Get Design for Shipping Return Labels",
"ownerId": [3],
"startDate": new Date(2017, 4, 17, 15, 0),
"endDate": new Date(2017, 4, 17, 16, 30),
"priority": 1
}, {
"text": "PSD needed for Shipping Return Labels",
"ownerId": [4],
"startDate": new Date(2017, 4, 18, 8, 30),
"endDate": new Date(2017, 4, 18, 9, 15),
"priority": 2
}, {
"text": "Contact ISP and Discuss Payment Options",
"ownerId": [1],
"startDate": new Date(2017, 4, 18, 11, 30),
"endDate": new Date(2017, 4, 18, 16, 0),
"priority": 2
}, {
"text": "Prepare Year-End Support Summary Report",
"ownerId": [2],
"startDate": new Date(2017, 4, 18, 17, 0),
"endDate": new Date(2017, 4, 18, 20, 0),
"priority": 1
}, {
"text": "Review New Training Material",
"ownerId": [3],
"startDate": new Date(2017, 4, 19, 8, 0),
"endDate": new Date(2017, 4, 19, 9, 15),
"priority": 2
}, {
"text": "Distribute Training Material to Support Staff",
"ownerId": [2],
"startDate": new Date(2017, 4, 19, 12, 45),
"endDate": new Date(2017, 4, 19, 14, 0),
"priority": 1
}, {
"text": "Training Material Distribution Schedule",
"ownerId": [2],
"startDate": new Date(2017, 4, 19, 14, 15),
"endDate": new Date(2017, 4, 19, 16, 15),
"priority": 1
}, {
"text": "Approval on Converting to New HDMI Specification",
"ownerId": [4],
"startDate": new Date(2017, 4, 22, 9, 30),
"endDate": new Date(2017, 4, 22, 10, 15),
"priority": 2
}, {
"text": "Create New Spike for Automation Server",
"ownerId": [3],
"startDate": new Date(2017, 4, 22, 10, 0),
"endDate": new Date(2017, 4, 22, 12, 30),
"priority": 2
}, {
"text": "Code Review - New Automation Server",
"ownerId": [1],
"startDate": new Date(2017, 4, 22, 13, 0),
"endDate": new Date(2017, 4, 22, 15, 0),
"priority": 1
}, {
"text": "Confirm Availability for Sales Meeting",
"ownerId": [1],
"startDate": new Date(2017, 4, 23, 10, 15),
"endDate": new Date(2017, 4, 23, 15, 15),
"priority": 2
}, {
"text": "Reschedule Sales Team Meeting",
"ownerId": [2],
"startDate": new Date(2017, 4, 23, 16, 15),
"endDate": new Date(2017, 4, 23, 18, 0),
"priority": 2
}, {
"text": "Send 2 Remotes for Giveaways",
"ownerId": [3],
"startDate": new Date(2017, 4, 24, 9, 30),
"endDate": new Date(2017, 4, 24, 11, 45),
"priority": 1
}, {
"text": "Discuss Product Giveaways with Management",
"ownerId": [1],
"startDate": new Date(2017, 4, 24, 12, 15),
"endDate": new Date(2017, 4, 24, 16, 45),
"priority": 2
}, {
"text": "Replace Desktops on the 3rd Floor",
"ownerId": [2],
"startDate": new Date(2017, 4, 25, 9, 30),
"endDate": new Date(2017, 4, 25, 10, 45),
"priority": 1
}, {
"text": "Update Database with New Leads",
"ownerId": [3],
"startDate": new Date(2017, 4, 25, 12, 0),
"endDate": new Date(2017, 4, 25, 14, 15),
"priority": 2
}, {
"text": "Mail New Leads for Follow Up",
"ownerId": [1],
"startDate": new Date(2017, 4, 25, 14, 45),
"endDate": new Date(2017, 4, 25, 15, 30),
"priority": 2
}, {
"text": "Send Territory Sales Breakdown",
"ownerId": [2],
"startDate": new Date(2017, 4, 25, 18, 0),
"endDate": new Date(2017, 4, 25, 20, 0),
"priority": 1
}, {
"text": "Territory Sales Breakdown Report",
"ownerId": [1],
"startDate": new Date(2017, 4, 26, 8, 45),
"endDate": new Date(2017, 4, 26, 9, 45),
"priority": 1
}, {
"text": "Report on the State of Engineering Dept",
"ownerId": [3],
"startDate": new Date(2017, 4, 26, 14, 45),
"endDate": new Date(2017, 4, 26, 15, 30),
"priority": 2
}, {
"text": "Staff Productivity Report",
"ownerId": [4],
"startDate": new Date(2017, 4, 26, 16, 15),
"endDate": new Date(2017, 4, 26, 19, 30),
"priority": 2
}];
@Injectable()
export class Service {
getAppointments(){
return appointments;
}
getPriorities() {
return prioritiesData;
}
getResources() {
return resourcesData;
}
}
// 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>