I have a candle chart with 1000 candles, and I set the scale to 60 by following code.
Code: Select all
mainChart.Axes.Bottom.SetMinMax (candle1.Count - 60, candle1.Count);
When I scroll the chart, I can't scroll to the first candle, but only about the last 120 candles can be scrolled.
How can I scroll to the previous candles?
Please help!