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 customLineMarker = timeLine.lineMarker();
11
customLineMarker.value("2000-02-25 00:00:00");
12
13
// Get line marker scale.
14
var scaleSettings = customLineMarker.scale();
15
16
scaleSettings.minimum(Date.UTC(2000, 1, 23));
17
18
chart.title("Get and modify line marker scale");
19
chart.container("container");
20
chart.draw();
21
chart.fitAll();
22
});
23
24
function getData() {
25
return [
26
{
27
"id": "1",
28
"name": "Phase 1 - Strategic Plan",
29
"progressValue": "14%",
30
"actualStart": "2000-02-24 08:00:00",
31
"actualEnd": "2000-02-27 08:00:00"
32
},
33
{
34
"id": "2",
35
"name": "Self-Assessment",
36
parent: "1",
37
"progressValue": "25%",
38
"actualStart": "2000-02-24 08:00:00",
39
"actualEnd": "2000-02-29 08:00:00",
40
"baselineStart": "2000-02-27 08:00:00",
41
"baselineEnd": "2000-02-28 08:00:00"
42
},
43
{
44
"id": "3",
45
"name": "Define business vision",
46
parent: "2",
47
"progressValue": "0%",
48
"actualStart": "2000-02-25 00:00:00",
49
"actualEnd": "2000-02-25 09:00:00",
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": "2000-02-26 00:00:00",
59
"actualEnd": "2000-02-26 09:00:00",
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": "2000-02-27 08:00:00",
69
"actualEnd": "2000-02-28 08:00:00",
70
"connectTo": "6",
71
"connectorType": "FinishStart"
72
},
73
{
74
"id": "6",
75
"name": "Define the Opportunity",
76
parent: "1",
77
"progressValue": "27%",
78
"actualStart": "2000-02-28 08:00:00",
79
"actualEnd": "2000-02-29 08:00:00"
80
},
81
{
82
"id": "7",
83
"name": "Research the market and competition",
84
parent: "6",
85
"progressValue": "0%",
86
"actualStart": "2000-02-26 08:00:00",
87
"actualEnd": "2000-02-27 08:00:00",
88
"connectTo": "8",
89
"connectorType": "FinishStart"
90
}
91
];
92
}