google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Role', 'Percentage'],
['Agile Change Manager', 40],
['Agile Project Manager', 30],
['Scrum Master', 20],
['Agile Coach', 10]
]);
var options = {
backgroundColor: 'transparent',
is3D: true,
pieSliceText: 'percentage',
slices: { 0: {offset: 0.1}, 1: {offset: 0.1}, 2: {offset: 0.1}, 3: {offset: 0.1} }
};
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
Agile Change Manager
Lead and manage agile change initiatives within organizations, ensuring successful implementation and adoption of agile principles.
Agile Project Manager
Coordinate and oversee agile projects from initiation to completion, ensuring timely delivery and stakeholder satisfaction.
Scrum Master
Facilitate scrum ceremonies and ensure the scrum team adheres to agile practices and principles for efficient project delivery.
Agile Coach
Provide guidance and mentorship to teams transitioning to agile methodologies, fostering a culture of continuous improvement and collaboration.