-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscheduleConfig.json
48 lines (48 loc) · 1.43 KB
/
scheduleConfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"workHours": {
"start": "08:00",
"end": "18:00",
"highlight": "09:00-17:00"
},
"workDays": [0, 1, 2, 3, 4, 5],
"timeScale": {},
"views": ["TimelineDay", "TimelineWeek", "TimelineWorkWeek", "TimelineMonth", "Agenda"],
"group": {
"resources": ["Projects", "Categories"]
},
"headerRows": [],
"resources": [
{
"field": "ProjectId",
"title": "Choose Project",
"name": "Projects",
"dataSource": [
{ "text": "PROJECT 1", "id": 1, "color": "#cb6bb2" },
{ "text": "PROJECT 2", "id": 2, "color": "#56ca85" },
{ "text": "PROJECT 3", "id": 3, "color": "#df5286" }
],
"textField": "text",
"idField": "id",
"colorField": "color"
},
{
"field": "TaskId",
"title": "Category",
"name": "Categories",
"allowMultiple": true,
"dataSource": [
{ "text": "Nancy", "id": 1, "groupId": 1, "color": "#df5286" },
{ "text": "Steven", "id": 2, "groupId": 1, "color": "#7fa900" },
{ "text": "Robert", "id": 3, "groupId": 2, "color": "#ea7a57" },
{ "text": "Smith", "id": 4, "groupId": 2, "color": "#5978ee" },
{ "text": "Michael", "id": 5, "groupId": 3, "color": "#df5286" },
{ "text": "Root", "id": 6, "groupId": 3, "color": "#00bdae" }
],
"textField": "text",
"idField": "id",
"groupIDField": "groupId",
"colorField": "color"
}
],
"eventSettings": {}
}