This is my code snippet... there is three pie slices in pie chart, but only two labels are visible
var options = {
is3D: true,
fontSize: 7,
backgroundColor: 'transparent',
legend: 'none',
pieSliceText: 'value',
pieSliceTextStyle: { bold: true, color:'black'},
tooltip: {
textStyle: { fontSize: 12 }
},
slices: {
0: {color: '#e76442'},
1:{color: '#ffc100'},
2:{color: '#348be7'},
}
};