I have a line chart with a dozen series, each a simple list of 24 values.
I would like to specify the number of pixels from the edge of the chart control to the Y axis line. Can this be done?
I would also like to specify the exact spacing along the X axis of each of data points on the line graph (distance between each mark). Again is this possible?
TIA,
Keith
you can use the Scene.Margin property to distance the axes from the edge of the control. explained here: http://help.infragistics.com/Help/NetAdvantage/WPF/2008.1/CLR3.X/html/xamChart_Position_a_2D_Chart_Scene.html
the second part is not possible, but you can submit a feature request here: http://devcenter.infragistics.com/protected/requestfeature.aspx
In fact I had already found a workaround, based in part on the Scene.Margin, but also on the GridArea.Margin.
However, the obligation to use Percent is very inconvenient in scenarios involving alignement with other controls on the screen, where we typically know their position in pixels.
I will submit a request for a third enum value for MarginType ("Manual" or "Absolute" or...)
Thanks for your response.