I suspect the roblem is in your PieChart options:

var PieOptionAuto = {
    pieSliceText: 'value',    is3D: false,    legend: {        position: 
'labeled'    },    width: 350,    height: 350,    chartArea: {        height: 
'85%',        width: '90%'    },    pieStartAngle: 90
};


By setting the chartArea height and width to such a large proportion of the 
total chart size, you eliminate all of the space for the labels.  In HTML, 
you specify a width of 700 for the chart div.  Perhaps something like this 
would be more appropriate for your chart options?:

var PieOptionAuto = {
    pieSliceText: 'value',    is3D: false,    legend: {        position: 
'labeled'    },
    // use the width specified in HTML
    //width: 350,    height: 350,    chartArea: {        height: '85%'        
// specifying height here should be sufficient    },    pieStartAngle: 90
};




On Thursday, May 22, 2014 1:19:07 PM UTC-4, TheInnovator wrote:
>
> Pleas see the following site:
> Enter *10/2013* for this month and *01/2014* for last month
> http://isaac.issharepoint.com/Web%20Part%20Page/508Dashboard.aspx
>
> My labels are not appearing with the associated line.
>
> Any ideas?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to