File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 22612261 fp . CreateXY ( { ndim : this . Dimension ( ) ,
22622262 check_pad_range : this . check_pad_range ,
22632263 create_canvas : this . create_canvas ,
2264+ ymin_nz : this . ymin_nz ,
22642265 swap_xy : ( this . options . BarStyle >= 20 ) ,
22652266 reverse_x : this . options . RevX ,
22662267 reverse_y : this . options . RevY ,
Original file line number Diff line number Diff line change 11951195 if ( this . scale_ymin > 0 ) break ;
11961196 }
11971197
1198- if ( ( this . scale_ymin <= 0 ) && ( 'ymin_nz' in this ) && ( this . ymin_nz > 0 ) && ( this . ymin_nz < 1e-2 * this . ymax ) )
1199- this . scale_ymin = 0.3 * this . ymin_nz ;
1198+ if ( ( this . scale_ymin <= 0 ) && ( opts . ymin_nz ) && ( opts . ymin_nz < 1e-2 * this . ymax ) )
1199+ this . scale_ymin = 0.3 * opts . ymin_nz ;
12001200
12011201 if ( ( this . scale_ymin <= 0 ) || ( this . scale_ymin >= this . scale_ymax ) )
12021202 this . scale_ymin = 3e-4 * this . scale_ymax ;
You can’t perform that action at this time.
0 commit comments