tonyyeb Report post Posted February 1, 2007 Hi all 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 Share this post Link to post Share on other sites
Pallav Report post Posted February 2, 2007 You've various options for label display like rotate, slant, wrap etc. You can read about them at http://www.fusioncharts.com/FusionCharts/Docs/Contents/AttDesc/DataLabels.html Share this post Link to post Share on other sites
tonyyeb Report post Posted February 9, 2007 This doesn't appear to work on the free version. Should it? Share this post Link to post Share on other sites
Pallav Report post Posted February 9, 2007 No - its present only in commercial version (www.fusioncharts.com). Share this post Link to post Share on other sites
paul.ansell11 Report post Posted August 16, 2007 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 '-------------------- Share this post Link to post Share on other sites
Pallav Report post Posted August 17, 2007 In Free version, use <graph rotateNames='1' ..> Share this post Link to post Share on other sites
paul.ansell11 Report post Posted August 17, 2007 Many thanks. Share this post Link to post Share on other sites