Sign in to follow this  
vbsvij

label rotation

Recommended Posts

hi all

i have problem of overlapping x-axis lablels. if i uses <graph rotateName='1'> , it rotate the lable by 90 degree. i wants to rotate it by 45 degree. Please help me

Share this post


Link to post
Share on other sites

Hello,

 

 

 

Welcome to the forum. :)

 

 

 

Could you please try setting the slantLabel attribute in the chart element to one?

 

 

 

This can be done as shown below:

 

 

 

<chart ...slantLabels='1' ...>

 

 

 

Hope this helps.

Share this post


Link to post
Share on other sites
saptarshi (6/15/2009)
Hello,

 

 

 

Welcome to the forum. :)

 

 

 

Could you please try setting the slantLabel attribute in the chart element to one?

 

 

 

This can be done as shown below:

 

 

 

<chart ...slantLabels='1' ...>

 

 

 

Hope this helps.

 

 

 

I am facing a problem with my slantLabels as well. I am using FusionCharts with PHP Class.

 

 

 


$FC = new FusionCharts("MSColumn3D","1200","520");

	$strParam="caption=Average Resolution Times;subcaption=Showing Stats Between $startdate and $enddate;xAxisName=Products;YAxisName=Time(Hours);numberPrefix=;sNumberSuffix=;slantLabels=1;";

$FC->setChartParams($strParam);

 

 

 

However, it simply ignores slantLabels=1. If I use rotateNames=1, it rotates by 90 Degrees. Please Help.

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi,

I am facing a problem with my slantLabels as well. I am using FusionCharts with PHP Class.

$FC = new FusionCharts("MSColumn3D","1200","520");

  $strParam="caption=Average Resolution Times;subcaption=Showing Stats Between $startdate and $enddate;xAxisName=Products;YAxisName=Time(Hours);numberPrefix=;sNumberSuffix=;slantLabels=1;";

$FC->setChartParams($strParam);

However, it simply ignores slantLabels=1. If I use rotateNames=1, it rotates by 90 Degrees. Please Help.

Please try setting labelDisplay='Rotate' and slantLabels='1' in the <chart> element.

Hope this helps. :)

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this