Is there a way to rotate the labels of the data on a column graph? The names are quite long and it would be great to rotate them so they would at least fit.
Many thanks
Chris
Posted 01 February 2007 - 12:27 PM
Is there a way to rotate the labels of the data on a column graph? The names are quite long and it would be great to rotate them so they would at least fit.
Many thanks
Chris
Posted 02 February 2007 - 01:04 PM
Posted 09 February 2007 - 06:27 AM
Posted 09 February 2007 - 03:24 PM
Posted 16 August 2007 - 09:37 AM
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
'--------------------
Posted 17 August 2007 - 02:20 AM