File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Original file line number Diff line number Diff line change @@ -446,7 +446,9 @@ def get_useScalingFactor(self):
446
446
447
447
def set_useScalingFactor (self ,val ):
448
448
"""
449
- Enable or disable the use of scaling factor in the axis.
449
+ Takes (True|False|numeric value) as argument.
450
+ Enable, disable, or sets and enables the use of scaling factor
451
+ in the axis.
450
452
Note that either offset or scaling can be used. Therefore,
451
453
this automatically turns off offset
452
454
"""
@@ -469,9 +471,11 @@ def get_useOffset(self):
469
471
470
472
def set_useOffset (self , val ):
471
473
"""
472
- Enable or disable the use of offset in the axis or enable & set the offset
473
- at the same time. Since offset cannot be used in conjunction with a scaling
474
- factor, the scaling factor is turned off.
474
+ Takes (True|False|numeric value) as argument.
475
+ Enable, disable, or sets and enables the use of an offset
476
+ in the axis.
477
+ Note that either offset or scaling can be used. Therefore,
478
+ this automatically turns off scaling factor
475
479
"""
476
480
if val in [True , False ]:
477
481
self .offsetval = 0
You can’t perform that action at this time.
0 commit comments