Login Page - Create Account

Support Board


Date/Time: Tue, 07 May 2024 22:45:43 +0000



Post From: ACSIL Range Issue

[2014-11-26 17:45:38]
Trade Nice - Posts: 75
I am using the following code to try to set the scale to a high and low value for user defined. User Defined is chosen on the Scale window, but the values for high and low are not getting set, no numbers appear in the enabled boxes, that is the boxes are white, but no numbers

sc.BaseGraphScaleRangeType = SCALE_USERDEFINED;
sc.ScaleRangeTop = 100
sc.ScaleRangeBottom = 90

I have just used 100 and 90 on here by way of example, though I have tried to use a floating variable as well as the form shown in the help; 100.0f and 90.0f

However, the following code works perfectly

sc.BaseGraphScaleRangeType = SCALE_CONSTRANGECENTRE;
sc.BaseGraphConstantRange = 10

Please help