File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ class RFramePainter extends RObjectPainter {
316316 log : this . swap_xy ? this . logx : this . logy ,
317317 symlog : this . swap_xy ? opts . symlog_x : opts . symlog_y ,
318318 logcheckmin : ( opts . ndim < 2 ) || this . swap_xy ,
319- log_min_nz : opts . ymin_nz && ( opts . ymin_nz < 0.01 * this . ymax ) ? 0.3 * opts . ymin_nz : 0 ,
319+ log_min_nz : opts . ymin_nz && ( opts . ymin_nz < this . ymax ) ? 0.5 * opts . ymin_nz : 0 ,
320320 logminfactor : 3e-4 } ) ;
321321
322322 this . y_handle . assignFrameMembers ( this , 'y' ) ;
Original file line number Diff line number Diff line change @@ -2038,7 +2038,7 @@ class TFramePainter extends ObjectPainter {
20382038 log : this . swap_xy ? pad . fLogx : pad . fLogy ,
20392039 noexp_changed : this . y2_noexp_changed ,
20402040 logcheckmin : ( opts . ndim < 2 ) || this . swap_xy ,
2041- log_min_nz : opts . ymin_nz && ( opts . ymin_nz < 0.01 * this . y2max ) ? 0.3 * opts . ymin_nz : 0 ,
2041+ log_min_nz : opts . ymin_nz && ( opts . ymin_nz < this . y2max ) ? 0.5 * opts . ymin_nz : 0 ,
20422042 logminfactor : logminfactorY } ) ;
20432043
20442044 this . y2_handle . assignFrameMembers ( this , 'y2' ) ;
You can’t perform that action at this time.
0 commit comments