google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Career Role', 'Percentage'],
['Autism Support Worker', 25],
['Behavior Analyst', 20],
['Speech Therapist', 15],
['Special Education Teacher', 15],
['Occupational Therapist', 10],
['Clinical Psychologist', 10],
['Social Worker', 5]
]);
var options = {
title: 'Job Market Trends in the UK for Inclusión Social de Personas con Autismo',
is3D: true,
backgroundColor: 'transparent',
};
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}