Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
570
How can I bind Axis max and min values to an object in code?
posted
So instead of saying

NumericYAxis
 xmYAxis = new NumericYAxis();
xmYAxis.MinimumValue = 0;
xmYAxis.MaximumValue = 2000;

I would like to bind it an object of...

Class AxisRangeObject
{
 public float MaxYAxisRange { getset; }
public float MinYAxisRange { getset; }
}

Is it possible at all?