google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Career Role', 'Percentage'],
['Office Space Planner', 20],
['Facilities Manager', 15],
['Interior Designer', 25],
['Project Manager', 20],
['Architect', 20]
]);
var options = {
title: 'Job Market Trends in Modern Office Layouts',
is3D: true,
backgroundColor: 'transparent'
};
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
Office Space Planner
An Office Space Planner is responsible for designing and organizing office layouts to maximize efficiency and productivity.
Facilities Manager
A Facilities Manager oversees the maintenance and operations of office spaces, ensuring they meet safety and regulatory standards.
Interior Designer
An Interior Designer creates aesthetically pleasing and functional office designs that reflect the company's brand and culture.
Project Manager
A Project Manager coordinates and manages the implementation of office layout projects, ensuring they are completed on time and within budget.
Architect
An Architect designs innovative and sustainable office spaces, incorporating elements of technology and environmental efficiency.