Your code is fine - by default, the Pie charts don't draw any slices that are smaller than 1/2 degree arc. You can try changing the sliceVisibilityThreshold option to something like 1/2160 (1/6 degree arc), which would theoretically allow your slice to draw, though it is quite possible that the slice would be narrower than a single pixel. You could also artificially inflate the size of your "No escolarizados" value and set the formatted value to the true value; something like this:
data.setValue(0,0,'No Escolarizado'); data.setValue(0,1,30); data.setFormattedValue(0, 1, '3'); should make the slice big enough to draw, and the tooltip will show the correct value. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-visualization-api/-/uQE1xSY-lXwJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en.
