Files
XRLib/Assets/StreamingAssets/sample_gantt_data.json

130 lines
2.8 KiB
JSON
Raw Normal View History

2025-11-13 20:16:25 +09:00
{
"project": {
"name": "B-Project Gantt Chart",
"startDate": "2024-10-31",
"endDate": "2024-11-21",
"timeUnit": "day",
"totalDays": 21
},
"timeAxis": {
"dates": [
"2024-10-31",
"2024-11-01",
"2024-11-02",
"2024-11-03",
"2024-11-04",
"2024-11-05",
"2024-11-06",
"2024-11-07",
"2024-11-08",
"2024-11-09",
"2024-11-10",
"2024-11-11",
"2024-11-12",
"2024-11-13",
"2024-11-14",
"2024-11-15",
"2024-11-16",
"2024-11-17",
"2024-11-18",
"2024-11-19",
"2024-11-20",
"2024-11-21"
],
"format": "MM/dd",
"label": "일자"
},
"tasks": [
{
"id": "B111P",
"name": "B111P",
"startDate": "2024-10-31",
"endDate": "2024-11-07",
"durationDays": 7,
"progress": 100,
"owner": "팀A",
"color": "#4CAF50",
"priority": "high",
"dependencies": []
},
{
"id": "B112P",
"name": "B112P",
"startDate": "2024-11-01",
"endDate": "2024-11-07",
"durationDays": 6,
"progress": 36,
"owner": "팀B",
"color": "#2196F3",
"priority": "medium",
"dependencies": []
},
{
"id": "B121P",
"name": "B121P",
"startDate": "2024-11-08",
"endDate": "2024-11-21",
"durationDays": 13,
"progress": 30,
"owner": "팀C",
"color": "#FF9800",
"priority": "medium",
"dependencies": [ "B111P" ]
},
{
"id": "B122P",
"name": "B122P",
"startDate": "2024-11-08",
"endDate": "2024-11-21",
"durationDays": 13,
"progress": 95,
"owner": "팀D",
"color": "#F44336",
"priority": "high",
"dependencies": [ "B112P" ]
},
{
"id": "B123P",
"name": "B123P",
"startDate": "2024-11-08",
"endDate": "2024-11-21",
"durationDays": 13,
"progress": 65,
"owner": "팀E",
"color": "#FFEB3B",
"priority": "medium",
"dependencies": [ "B111P", "B112P" ]
},
{
"id": "B124P",
"name": "B124P",
"startDate": "2024-11-08",
"endDate": "2024-11-21",
"durationDays": 13,
"progress": 42,
"owner": "팀F",
"color": "#9C27B0",
"priority": "low",
"dependencies": [ "B121P" ]
}
],
"uiSettings": {
"rowHeight": 40,
"headerHeight": 50,
"taskBarHeight": 24,
"showProgressText": true,
"showOwner": true,
"showDependencies": true,
"gridLineColor": "#E0E0E0",
"backgroundColor": "#FFFFFF",
"headerBackgroundColor": "#F5F5F5",
"taskListWidth": 200,
"timelineWidth": 840,
"dependencyLineColor": "#666666",
"dependencyLineWidth": 1,
"progressTextColor": "#FFFFFF",
"progressFontSize": 10,
"ownerTextColor": "#777777",
"ownerFontSize": 11
}
}