Page 1 of 1

DragDrop of chart components/elements

Posted: Mon Sep 28, 2015 1:21 pm
by Igor
Hi,

is it possible to Drag and Drop elements (like Y-Axis) from on side to another?
How would i do that?

thank you very much

Igor

Re: DragDrop of chart components/elements

Posted: Mon Sep 28, 2015 1:54 pm
by ArctionPasi
It is not unfortunately possible as built-in feature.

Y axis position controlling takes place when setting chart.ViewXY.AxisLayout.YAxisAutoPlacement = false. Position is set by yAxis.Position property. Setting 100 moves it to right edge. Then you may want to align the ticks to and axis to the right.

For triggering the postion change, you may want to set a transparent Band on the right edge, and in the MouseOverOn event of it, do the magic. ;)