HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
// create data tree on our data
3
var treeData = anychart.data.tree(getData(), anychart.enums.TreeFillingMethod.AS_TABLE);
4
5
// create resource gantt chart
6
var chart = anychart.ganttResource();
7
8
// set container id for the chart
9
chart.container('container');
10
11
// set data for the chart
12
chart.data(treeData);
13
// set start splitter position settings
14
chart.splitterPosition(150);
15
16
var now = (new Date()).getTime();
17
var sec = 1000;
18
var min = 60*sec;
19
var hour = 60*min;
20
var day = 24*hour;
21
22
// create linemarkers
23
var tl = chart.getTimeline();
24
tl.lineMarker(0).value(anychart.enums.GanttDateTimeMarkers.CURRENT);
25
tl.lineMarker(1).value(now + 5*day);
26
27
// set colors to the rows in the timeline section
28
tl.rowEvenFill("#FFF3E0 0.5");
29
tl.rowOddFill("#E0F7FA 0.5");
30
tl.rowHoverFill("#eee");
31
tl.rowSelectedFill("#FFAB91 0.5");
32
33
// set colors for selected elements
34
tl.selectedElementFill("#FFAB00");
35
tl.selectedElementStroke("#B8AA96");
36
37
// get chart data grid link to set column settings
38
var dataGrid = chart.dataGrid();
39
40
// set first column settings
41
var firstColumn = dataGrid.column(0);
42
firstColumn.title('#');
43
firstColumn.width(30);
44
firstColumn.cellTextSettings().hAlign('center');
45
46
// set second column settings
47
var secondColumn = dataGrid.column(1);
48
secondColumn.title('Person');
49
secondColumn.width(120);
50
secondColumn.cellTextSettings().hAlign('left');
51
secondColumn.format(function (item) {
52
return item.get('name');
53
});
54
55
// initiate chart drawing
56
chart.draw();
57
58
// zoom chart to specified date
59
chart.fitAll();
60
});
61
62
function getData() {
63
// colors
64
var moccasin_border = '#B8AA96';
65
var moccasin_bottom = '#CFC0A9';
66
var moccasin_middle = '#E6D5BC';
67
var moccasin_top = '#E8D9C3';
68
69
var rosybrown_border = '#9B9292';
70
var rosybrown_bottom = '#AFA4A4';
71
var rosybrown_middle = '#C2B6B6';
72
var rosybrown_top = '#C8BDBD';
73
74
var brown_border = '#6B5D5D';
75
var brown_bottom = '#796868';
76
var brown_middle = '#867474';
77
var brown_top = '#928282';
78
79
var now = (new Date()).getTime();
80
var sec = 1000;
81
var min = 60*sec;
82
var hour = 60*min;
83
var day = 24*hour;
84
85
return [
86
{
87
"id": "1",
88
"name": "Alex Exler",
89
"periods": [
90
{"id": "1_1", "start": now - 10*day, "end": now + 4*day, "stroke": moccasin_border, "fill": {"angle": 90, "keys": [{"color": moccasin_bottom, "position": 0}, {"color": moccasin_middle, "position": 0.38}, {"color": moccasin_top, "position": 1}]}},
91
{"id": "1_2", "start": now + 20*day, "end": now + 28*day, "stroke": moccasin_border, "fill": {"angle": 90, "keys": [{"color": moccasin_bottom, "position": 0}, {"color": moccasin_middle, "position": 0.38}, {"color": moccasin_top, "position": 1}]}}]
92
},
93
{
94
"id": "2",
95
"name": "Philip Kineyko",
96
"periods": [
97
{"id": "2_1", "start": now - 3*day, "end": now + 16*day, "stroke": rosybrown_border, "fill": {"angle": 90, "keys": [{"color": rosybrown_bottom, "position": 0}, {"color": rosybrown_middle, "position": 0.38}, {"color": rosybrown_top, "position": 1}]}},
98
{"id": "2_2", "start": now + 19*day, "end": now + 25*day, "stroke": moccasin_border, "fill": {"angle": 90, "keys": [{"color": moccasin_bottom, "position": 0}, {"color": moccasin_middle, "position": 0.38}, {"color": moccasin_top, "position": 1}]}}]
99
},
100
{
101
"id": "3",
102
"name": "Luke Liakos",
103
"periods": [
104
{"id": "3_1", "start": now + 5*day, "end": now + 10*day, "stroke": moccasin_border, "fill": {"angle": 90, "keys": [{"color": moccasin_bottom, "position": 0}, {"color": moccasin_middle, "position": 0.38}, {"color": moccasin_top, "position": 1}]}},
105
{"id": "3_2", "start": now + 25*day, "end": now + 29*day, "stroke": moccasin_border, "fill": {"angle": 90, "keys": [{"color": moccasin_bottom, "position": 0}, {"color": moccasin_middle, "position": 0.38}, {"color": moccasin_top, "position": 1}]}}]
106
},
107
{
108
"id": "4",
109
"name": "Judy Penfold",
110
"periods": [
111
{"id": "4_1", "start": now - 8*day, "end": now + 2*day, "stroke": moccasin_border, "fill": {"angle": 90, "keys": [{"color": moccasin_bottom, "position": 0}, {"color": moccasin_middle, "position": 0.38}, {"color": moccasin_top, "position": 1}]}},
112
{"id": "4_2", "start": now + 14*day, "end": now + 20*day, "stroke": moccasin_border, "fill": {"angle": 90, "keys": [{"color": moccasin_bottom, "position": 0}, {"color": moccasin_middle, "position": 0.38}, {"color": moccasin_top, "position": 1}]}}]
113
},
114
{
115
"id": "5",
116
"name": "Patricia Darmon",
117
"periods": [
118
{"id": "5_1", "start": now - 18*day, "end": now - 5*day, "stroke": moccasin_border, "fill": {"angle": 90, "keys": [{"color": moccasin_bottom, "position": 0}, {"color": moccasin_middle, "position": 0.38}, {"color": moccasin_top, "position": 1}]}},
119
{"id": "5_2", "start": now, "end": now + 12*day, "stroke": moccasin_border, "fill": {"angle": 90, "keys": [{"color": moccasin_bottom, "position": 0}, {"color": moccasin_middle, "position": 0.38}, {"color": moccasin_top, "position": 1}]}}]
120
121
}
122
];
123
}