Page 1 of 1

y axis layout

Posted: Thu Sep 18, 2014 2:46 pm
by fredd41
hi

I updated my last dll for 6.1.
Now my y-axis doesn't have the same layout.
I want to put the labels of the second y-axis on the right (not over the segment)
Where is the property ?

thanks

Re: y axis layout

Posted: Thu Sep 18, 2014 9:04 pm
by ArctionPasi
Set
ViewXY.YAxes[1].MajorDivTickStyle.Alignment = Far
ViewXY.YAxes[1].MinorDivTickStyle.Alignment = Far

That should help :P

Re: y axis layout

Posted: Fri Sep 19, 2014 12:18 pm
by fredd41
perfect

Re: y axis layout

Posted: Fri Sep 19, 2014 3:07 pm
by fredd41
is it possible to show area under a sampledataseries (with the speed of the sampledataseries) ?
thanks

Re: y axis layout

Posted: Fri Sep 19, 2014 3:52 pm
by ArctionPasi
Yes, you can show area series in the same chart. The performance of AreaSeries is not as good as PointLineSeries or SampleDataSeries because its fill calculation, but is still very good, we have optimized it lot during the years.

Re: y axis layout

Posted: Fri Sep 19, 2014 5:15 pm
by fredd41
but it's not possible to show the area of a sampledataseries (without adding another style of series) ?

Re: y axis layout

Posted: Fri Sep 19, 2014 5:58 pm
by ArctionPasi
You can use just AreaSeries. SampleDataSeries doesn't have fill. AreaSeries does and it has line too.