-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcareer.html
196 lines (191 loc) · 9.76 KB
/
career.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sunburst Chart</title>
<script src="https://cdn.anychart.com/releases/8.11.1/js/anychart-core.min.js"></script>
<script src="https://cdn.anychart.com/releases/8.11.1/js/anychart-sunburst.min.js"></script>
<style type="text/css">
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.chart-title {
font-size: 20px;
font-weight: bold;
text-align: center;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div id="container"></div>
<script>
anychart.onDocumentReady(function(){
var data = [
{
name: "Careers",
children: [
{
name: "Healthcare and Medical",
children: [
{ name: "Nurse", link: "nurse.html" },
{ name: "Physician", link: "physician.html" },
{ name: "Pharmacist", link: "pharmacist.html" },
{ name: "Pediatric Nurse", link: "pediatric-nurse.html" },
{ name: "Dental Hygienist", link: "dental-hygienist.html" },
{ name: "Radiologic Technologist", link: "radiologic-technologist.html" },
{ name: "Chiropractor", link: "chiropractor.html" },
{ name: "Pediatrician", link: "pediatrician.html" },
{ name: "Speech Therapist", link: "speech-therapist.html" },
{ name: "Occupational Therapist", link: "occupational-therapist.html" },
{ name: "Rehabilitation Counselor", link: "rehabilitation-counselor.html" },
{ name: "Physical Therapist", link: "physical-therapist.html" }
]
},
{
name: "Science and Research",
children: [
{ name: "Research Scientist", link: "research-scientist.html" },
{ name: "Biologist", link: "biologist.html" },
{ name: "Environmental Scientist", link: "environmental-scientist.html" },
{ name: "Astronomer", link: "astronomer.html" },
{ name: "Zoologist", link: "zoologist.html" },
{ name: "Wildlife Biologist", link: "wildlife-biologist.html" },
{ name: "Marine Biologist", link: "marine-biologist.html" },
{ name: "Forensic Scientist", link: "forensic-scientist.html" },
{ name: "Biotechnologist", link: "biotechnologist.html" },
{ name: "Biomedical Researcher", link: "biomedical-researcher.html" },
{ name: "Biomedical Engineer", link: "biomedical-engineer.html" },
{ name: "Forensic Psychologist", link: "forensic-psychologist.html" },
{ name: "Genetic Counselor", link: "genetic-counselor.html" },
{ name: "Environmental Scientist", link: "environmental-scientist.html" },
{ name: "Geologist", link: "geologist.html" }
]
},
{
name: "Engineering and Technology",
children: [
{ name: "Software Developer", link: "software-developer.html" },
{ name: "IT Support Specialist", link: "it-support-specialist.html" },
{ name: "Biomedical Engineer", link: "biomedical-engineer.html" },
{ name: "Data Analyst", link: "data-analyst.html" },
{ name: "Software Quality Assurance Tester", link: "software-quality-assurance-tester.html" },
{ name: "Industrial Engineer", link: "industrial-engineer.html" },
{ name: "Mechanical Engineer", link: "mechanical-engineer.html" },
{ name: "Aerospace Engineer", link: "aerospace-engineer.html" },
{ name: "Database Administrator", link: "database-administrator.html" },
{ name: "Electrical Engineer", link: "electrical-engineer.html" },
{ name: "Civil Engineer", link: "civil-engineer.html" },
{ name: "Robotics Engineer", link: "robotics-engineer.html" },
{ name: "Electronics Design Engineer", link: "electronics-design-engineer.html" },
{ name: "Web Developer", link: "web-developer.html" },
{ name: "Game Developer", link: "game-developer.html" }
]
},
{
name: "Design and Creative Arts",
children: [
{ name: "Graphic Designer", link: "graphic-designer.html" },
{ name: "Architect", link: "architect.html" },
{ name: "Artist", link: "artist.html" },
{ name: "Fashion Designer", link: "fashion-designer.html" },
{ name: "Interior Designer", link: "interior-designer.html" },
{ name: "Event Photographer", link: "event-photographer.html" },
{ name: "Mechanical Designer", link: "mechanical-designer.html" },
{ name: "Fashion Stylist", link: "fashion-stylist.html" }
]
},
{
name: "Education",
children: [
{ name: "Teacher", link: "teacher.html" },
{ name: "Elementary School Teacher", link: "elementary-school-teacher.html" },
{ name: "Speech Pathologist", link: "speech-pathologist.html" }
]
},
{
name: "Business and Finance",
children: [
{ name: "Accountant", link: "accountant.html" },
{ name: "Salesperson", link: "salesperson.html" },
{ name: "Marketing Manager", link: "marketing-manager.html" },
{ name: "Human Resources Manager", link: "human-resources-manager.html" },
{ name: "Financial Analyst", link: "financial-analyst.html" },
{ name: "Financial Planner", link: "financial-planner.html" },
{ name: "HR Recruiter", link: "hr-recruiter.html" },
{ name: "Market Research Analyst", link: "market-research-analyst.html" },
{ name: "Financial Auditor", link: "financial-auditor.html" },
{ name: "Financial Advisor", link: "financial-advisor.html" },
{ name: "Investment Banker", link: "investment-banker.html" },
{ name: "Tax Accountant", link: "tax-accountant.html" },
{ name: "Quality Control Inspector", link: "quality-control-inspector.html" },
{ name: "Product Manager", link: "product-manager.html" },
{ name: "Market Researcher", link: "market-researcher.html" },
{ name: "Insurance Underwriter", link: "insurance-underwriter.html" },
{ name: "Tax Collector", link: "tax-collector.html" },
{ name: "Administrative Officer", link: "administrative-officer.html" }
]
},
{
name: "Law and Public Service",
children: [
{ name: "Lawyer", link: "lawyer.html" },
{ name: "Police Detective", link: "police-detective.html" },
{ name: "Marriage Counselor", link: "marriage-counselor.html" },
{ name: "Human Rights Lawyer", link: "human-rights-lawyer.html" },
{ name: "Police Officer", link: "police-officer.html" },
{ name: "Diplomat", link: "diplomat.html" },
{ name: "Foreign Service Officer", link: "foreign-service-officer.html" },
{ name: "Customs and Border Protection Officer", link: "customs-and-border-protection-officer.html" }
]
},
{
name: "Media and Communication",
children: [
{ name: "Journalist", link: "journalist.html" },
{ name: "Social Media Manager", link: "social-media-manager.html" },
{ name: "Marketing Copywriter", link: "marketing-copywriter.html" },
{ name: "Public Relations Specialist", link: "public-relations-specialist.html" },
{ name: "Technical Writer", link: "technical-writer.html" }
]
},
{
name: "Others",
children: [
{ name: "Chef", link: "chef.html" },
{ name: "Event Planner", link: "event-plannar.html" },
{ name: "Real Estate Agent", link: "real-estate-agent.html" },
{ name: "Musician", link: "musician.html" },
{ name: "Air Traffic Controller", link: "air-traffic-controller.html" },
{ name: "Urban Planner", link: "urban-plannar.html" },
{ name: "Airline Pilot", link: "airline-pilot.html" },
{ name: "Advertising Executive", link: "advertising-execution.html" },
{ name: "IT Project Manager", link: "it-project-manager.html" },
{ name: "Video Game Tester", link: "video-game-tester.html" },
{ name: "Sports Coach", link: "sports-coach.html" },
{ name: "Film Director", link: "film-director.html" },
{ name: "Database Analyst", link: "database-analyst.html" },
{ name: "Public Health Analyst", link: "public-health-analyst.html" },
{ name: "Forestry Technician", link: "forestry-technician.html" },
{ name: "Wildlife Conservationist", link: "wildlife-conservationist.html" }
]
}
]
}
];
var chart = anychart.sunburst(data, "as-tree");
chart.title("Career Exploration Resources");
chart.container("container");
chart.listen("pointClick", function(e) {
if (e.point.get("link")) {
window.location.href = e.point.get("link");
}
});
chart.draw();
});
</script>
</body>
</html>