google.charts.load("current", {packages:["corechart"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Career Role', 'Percentage'],
['Palliative Care Physician', 30],
['Palliative Care Nurse', 25],
['Palliative Care Social Worker', 20],
['Palliative Care Counselor', 15],
['Palliative Care Chaplain', 10]
]);
var options = {
title: 'Job Market Trends in Advance Palliative Medicine',
is3D: true,
backgroundColor: 'transparent'
};
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}