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
chart.editing(true);
7
8
var timeLine = chart.getTimeline();
9
10
var customTextMarker = timeLine.textMarker();
11
12
// Set value.
13
customTextMarker.value("start");
14
15
chart.title("Set text marker value as a string");
16
chart.container("container");
17
chart.draw();
18
chart.fitAll();
19
});
20
21
function getData() {
22
return [
23
{
24
"id": "1",
25
"name": "Phase 1 - Strategic Plan",
26
"progressValue": "14%",
27
"actualStart": "2000-02-24 08:00:00",
28
"actualEnd": "2000-02-27 08:00:00"
29
},
30
{
31
"id": "2",
32
"name": "Self-Assessment",
33
parent: "1",
34
"progressValue": "25%",
35
"actualStart": "2000-02-24 08:00:00",
36
"actualEnd": "2000-02-29 08:00:00",
37
"baselineStart": "2000-02-27 08:00:00",
38
"baselineEnd": "2000-02-28 08:00:00"
39
},
40
{
41
"id": "3",
42
"name": "Define business vision",
43
parent: "2",
44
"progressValue": "0%",
45
"actualStart": "2000-02-25 00:00:00",
46
"actualEnd": "2000-02-25 09:00:00",
47
"connectTo": "4",
48
"connectorType": "FinishStart"
49
},
50
{
51
"id": "4",
52
"name": "Identify available skills, information and support",
53
parent: "2",
54
"progressValue": "0%",
55
"actualStart": "2000-02-26 00:00:00",
56
"actualEnd": "2000-02-26 09:00:00",
57
"connectTo": "5",
58
"connectorType": "FinishStart"
59
},
60
{
61
"id": "5",
62
"name": "Decide whether to proceed",
63
parent: "2",
64
"progressValue": "0%",
65
"actualStart": "2000-02-27 08:00:00",
66
"actualEnd": "2000-02-28 08:00:00",
67
"connectTo": "6",
68
"connectorType": "FinishStart"
69
},
70
{
71
"id": "6",
72
"name": "Define the Opportunity",
73
parent: "1",
74
"progressValue": "27%",
75
"actualStart": "2000-02-28 08:00:00",
76
"actualEnd": "2000-02-29 08:00:00"
77
},
78
{
79
"id": "7",
80
"name": "Research the market and competition",
81
parent: "6",
82
"progressValue": "0%",
83
"actualStart": "2000-02-26 08:00:00",
84
"actualEnd": "2000-02-27 08:00:00",
85
"connectTo": "8",
86
"connectorType": "FinishStart"
87
}
88
];
89
}