I have a .NET chart which I am populating at runtime
The chart appears within a report. For each band in my report, I clear all the series and add them back in usin
you need to run this sequence:
AxisY.Maximum = Double.NaN; // sets the Maximum to NaN AxisY.Minimum = Double.NaN; // sets the Minimum to NaN enter code herechart.ChartAreas[0].RecalculateAxesScale(); // recalculates the Maximum and Minimum values, since they are set to NaN