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
var data = getData();
3
4
var chart = anychart.ganttProject();
5
chart.data(data, "asTable");
6
7
var timeline = chart.getTimeline();
8
9
var header = timeline.header();
10
header.topLevel({tileFill: "none"});
11
header.midLevel({tileFill: "none"});
12
header.lowLevel({tileFill: "none"});
13
14
// Set background fill.
15
header.backgroundFill({
16
src: "https://static.anychart.com/images/underwater.jpg",
17
mode: "stretch",
18
opacity: 0.2
19
});
20
21
chart.title("Set background fill as an image");
22
chart.container("container");
23
chart.draw();
24
chart.fitAll();
25
});
26
function getData() {
27
return [
28
{
29
"id": "1",
30
"name": "Phase 1 - Strategic Plan",
31
"progressValue": "14%",
32
"actualStart": 951350400000,
33
"actualEnd": 951609600000
34
},
35
{
36
"id": "2",
37
"name": "Self-Assessment",
38
parent: "1",
39
"progressValue": "25%",
40
"actualStart": 951350400000,
41
"actualEnd": 951782400000
42
},
43
{
44
"id": "3",
45
"name": "Define business vision",
46
parent: "2",
47
"progressValue": "0%",
48
"actualStart": 951408000000,
49
"actualEnd": 951440400000,
50
"connectTo": "4",
51
"connectorType": "FinishStart"
52
},
53
{
54
"id": "4",
55
"name": "Identify available skills, information and support",
56
parent: "2",
57
"progressValue": "0%",
58
"actualStart": 951494400000,
59
"actualEnd": 951526800000,
60
"connectTo": "5",
61
"connectorType": "FinishStart"
62
},
63
{
64
"id": "5",
65
"name": "Decide whether to proceed",
66
parent: "2",
67
"progressValue": "0%",
68
"actualStart": 951609600000,
69
"actualEnd": 951696000000,
70
"connectTo": "6",
71
"connectorType": "FinishStart"
72
},
73
{
74
"id": "6",
75
"name": "Define the Opportunity",
76
parent: "1",
77
"progressValue": "27%",
78
"actualStart": 951696000000,
79
"actualEnd": 951782400000
80
},
81
{
82
"id": "7",
83
"name": "Research the market and competition",
84
parent: "6",
85
"progressValue": "0%",
86
"actualStart": 951523200000,
87
"actualEnd": 951609600000,
88
"connectTo": "8",
89
"connectorType": "FinishStart"
90
}
91
];
92
}