Page 1 of 1

Query regarding axes title

Posted: Fri Oct 19, 2012 6:39 am
by 9641422
Hello Steema Support ,

I am using tee chart in Silverlight Application and I am facing problem when I am setting the title of right axes ,this title is not coming on the center position of the chart. I am setting property for right axes title is :-

tChartGraph.Axes.Right.Title.Text = "Percentile";
tChartGraph.Axes.Right.Title.Angle = 270;
tChartGraph.Axes.Right.Title.Font.Bold = true;
tChartGraph.Axes.Right.Title.Font.Size = 8;

and when I am setting the title of bottom axes then title of bottom axes is getting merged with Bottom axes Label Items(scale) how to set margin(gap) between Axes title & label items of tee chart in this case bottom axes label item angel is set at 90 degree.

tChartGraph.Axes.Bottom.Labels.Angle = 90;

tChartGraph.Axes.Bottom.Labels.Font.Size = 6;

I am also attaching image of this chart.


Any Solution will be highly appreciated.

Thanks & Regards
Plano Team

Re: Query regarding axes title

Posted: Fri Oct 19, 2012 8:52 am
by narcis
Hello,
I am using tee chart in Silverlight Application and I am facing problem when I am setting the title of right axes ,this title is not coming on the center position of the chart. I am setting property for right axes title is :-
This looks like a bug to me as it works fine in WinForms and the left axis title is also centered. I have added it (TW24016389) to the defect list to be fixed.
and when I am setting the title of bottom axes then title of bottom axes is getting merged with Bottom axes Label Items(scale) how to set margin(gap) between Axes title & label items of tee chart in this case bottom axes label item angel is set at 90 degree.
You can increase the bottom margin like this:

Code: Select all

      tChart1.Panel.MarginBottom = 10;