Search found 1 match
- Thu Mar 04, 2010 10:52 am
- Forum: .NET
- Topic: Automatic bottom axes
- Replies: 1
- Views: 1625
Automatic bottom axes
Hi, I need a graph that will always show the last 15 minutes of the data. In order to achieve it on every insert i update the Minimum and the Maximum This is the code: DateTime endTime = DateTime.UtcNow; DateTime startTime = endTime.Subtract(new TimeSpan(0, 15, 0)); tchart.Axes.Bottom.Minimum = endT...