Hello,
Is it possible to change the chart postion (or margins). I'm talking about the chart itself (inside the ultrachart), not the ultrachart object.
I've explored the FillSceneGraphEvent, but I don't know what to modify...
Btw, I'm using non-composite charts.
Thank you in advance.
Hi,
_bL0p_ said: Is it possible to change the chart postion (or margins). I'm talking about the chart itself (inside the ultrachart), not the ultrachart object.
Of course you could used FillSceneGraphe event, but this approach is very complicated, because you should apply offset to each Primitive in your chart. My suggestion is to used the properties of your axis. For example:
ultraChart1.Axis.X.Extent = 40;
ultraChart1.Axis.Y.Extent = 40;
Please take a look at the attached video for more details and let me know if you have any questions.
Regards