CJ 18.6.0 on DF 20

I've tried approximately 357 different things & no luck. The Y axis shows #'s - the X, no way. I had one combo (long since forgotten exactly what) that showed the seconds (X axis) as the points were added. I'd prefer that they show at the start.

Click image for larger version. 

Name:	Chart.JPG 
Views:	126 
Size:	64.0 KB 
ID:	15449

Code:

Code:
                     Object oYAxis is a cSigCJAxis
                        Set peWhichAxis to xtpChartAxisY
                        Set pbAxisLabelFormatUseThousandSeparator to True
                        Set pbAxisRangeShowZeroLevel to True
                        Set psAxisTitleText to "Leak Rate (mbarL/sec)"
                        Set pbAxisGridSpacingAuto to True
                        Set pbAxisRangeAutoRange to False
                        
                        Set prAxisRangeMaxValue  to 9.0E-07
                        Set prAxisRangeMinValue  to 1.0E-08
                        Set prAxisRangeViewMinValue to 1.0E-08
                        Set prAxisRangeViewMaxValue to 9.0E-07
                        Set pbAxisRangeViewAutoRange to True       
                     End_Object
        
                    Object oXAxis is a cSigCJAxis
                        Set peWhichAxis to xtpChartAxisX
                        Set pbAxisLabelFormatUseThousandSeparator to True
                        Set pbAxisRangeShowZeroLevel to True
                        Set psAxisTitleText to "Time (sec)"
                        Set pbAxisGridSpacingAuto to True
                        Set pbAxisRangeAutoRange to False
                        
                        Set prAxisRangeMaxValue  to 70 
                        Set prAxisRangeMinValue  to 0
                        Set prAxisRangeViewMinValue to 0
                        Set prAxisRangeViewMaxValue to 70
                        Set pbAxisRangeViewAutoRange to True
                    End_Object
Any help, or maybe an example or 2 would be greatly appreciated. TIA!