Hi Praveen,
Have you tried something like this? It puts the actual value in the Pie and the percentage outside, perhaps you can use this as a base to work with to see if you can get the end result you want.
Regards,
Steve.
google.charts.load('current', {
packages: ['corechart']
}).then(function () {
var data = google.visualization.arrayToDataTable([
['Language', 'Amount'],
['Spanish', 87.1],
['Portuguese', 102],
['Other', 13.2]
]);
var options = {
width: 900,
height: 400,
title: 'Languages',
colors: ['#008000', '#ffbf00', '#FF0000'],
pieSliceText: 'value',
sliceVisibilityThreshold :0,
fontSize: 17,
legend: {
position: 'labeled'
},
};
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
});