Thanks!

Posted 17 May 2012 - 10:00 AM
Hello, I have a 2d pie chart format and need not to cut the string of data. I attached sample image. Can you format the graphic so do not cut the strings?
Thanks!
Posted 17 May 2012 - 02:12 PM
Hi,
To avoid cutting of data labels, you can use manageLabelOverflow attribute.
This attribute tries to manage overflow of data labels. If enabled, data labels are either wrapped or truncated with ellipses to prevent them from overflowing out of the chart canvas.
Ref. Code:
<chart ... manageLabelOverflow='1'>
For more information, read smart labels and lines section from here: http://docs.fusionch...rtSS/Pie3D.html
Posted 18 May 2012 - 05:27 AM
Hi, I use these code, but the managelabeloverflow not work.
'defino los datos generales del gráfico
.ChartType = pie2d
.Data.setChartParams "caption=NC x Tipo; bgColor=A8D7AB; bgAlpha=00; xAxisName=Tipo ;xAxisValue=300; yAxisName=Cantidad;pieRadius=120; manageLabelOverflow=1"
'Armo el gráfico de fallas
For i = 1 To rst.RecordCount
.Data.addChartData rst("CANTIDAD"), "Label=" & rst("COMPLETO")
rst.MoveNext
Next i