Should labelDisplay='ROTATE' work in the free version. In the documentation that comes with FusionCharts Free it says that it should work?
FusionCharts Free vs. FusionCharts v3 - Feature Comparison Matrix
Feature FusionCharts v3 FusionCharts Free
Display Modes for x-axis labels Rotate, stagger, slant, wrap etc. Just rotate option
My Code (ASP):
strXML = strXML & "<graph caption='Monthly Unit Sales' xAxisName='Maint' labelDisplay='ROTATE' yAxisName='Errors' decimalPrecision='0' formatNumberScale='0' >"
WHILE NOT rsChart.EOF
strXML = strXML & "<set name='" & rsChart("Name") & "' value='" & rsChart("Errors") & "' />"
rsChart.MoveNext
WEND
strXML = strXML & "</graph>"
rsChart.close
objConn.Close
SET rsChart=nothing
SET objConn=nothing
'--------------------