The idea to keep in mind is that strip charts are in some ways strange critters. With a stip chart you are essentially viewing a fixed size window into a much larger dataset (the Chart History Length). To set the number of datapoints to display at any one time, you use the start and stop indexes on the X axis. The difference between the two is the number of points that will be displayed.
Hence, if you want to display a window of 120 points (2 hours) make sure that the difference between the minimum xscale value and the maximum xscale value is always 120. The strip chart has a built in scroll-bar that you can turn on, or if you want to set the location of the "window" you can use the properties you mentioned. Just remember to set one and calc
ulate the other.
For example, if you set the minimum xscale value to 135, calculate the maximum xscale value by adding 120 to the minimum value: 135+120=255. Alternately, you can specify the max value and calculate the min value by subtracting 120.
Mike...