@@ -1064,7 +1064,7 @@ def finish_show_polar(self, iviewer):
10641064 # Do not allow the axis to autoscale, which could happen if
10651065 # overlays are drawn out-of-bounds
10661066 self .axis .autoscale (False )
1067- self .axis .set_ylabel (r'$\phi$ [deg]' , fontsize = 14 , family = 'serif' )
1067+ self .axis .set_ylabel (r'$\phi$ [deg]' , fontsize = 15 , family = 'serif' )
10681068 self .axis .label_outer ()
10691069 else :
10701070 rescale_image = False
@@ -1084,7 +1084,7 @@ def finish_show_polar(self, iviewer):
10841084 HexrdConfig ().last_unscaled_azimuthal_integral_data = unscaled
10851085
10861086 self .azimuthal_integral_axis = axis
1087- axis .set_ylabel (r'Azimuthal Average' , fontsize = 14 , family = 'serif' )
1087+ axis .set_ylabel (r'Azimuthal Average' , fontsize = 15 , family = 'serif' )
10881088 self .update_azimuthal_plot_overlays ()
10891089 self .update_wppf_plot ()
10901090
@@ -1124,7 +1124,7 @@ def finish_show_polar(self, iviewer):
11241124 axis = self .azimuthal_integral_axis
11251125
11261126 # Update the xlabel in case it was modified (via tth distortion)
1127- axis .set_xlabel (self .polar_xlabel , fontsize = 14 , family = 'serif' )
1127+ axis .set_xlabel (self .polar_xlabel , fontsize = 15 , family = 'serif' )
11281128 else :
11291129 if len (self .axes_images ) == 0 :
11301130 self .axis = self .figure .add_subplot (111 )
@@ -1136,13 +1136,13 @@ def finish_show_polar(self, iviewer):
11361136 'interpolation' : 'none' ,
11371137 }
11381138 self .axes_images .append (self .axis .imshow (** kwargs ))
1139- self .axis .set_ylabel (r'$\phi$ [deg]' , fontsize = 14 , family = 'serif' )
1139+ self .axis .set_ylabel (r'$\phi$ [deg]' , fontsize = 15 , family = 'serif' )
11401140 else :
11411141 rescale_image = False
11421142 self .axes_images [0 ].set_data (img )
11431143
11441144 # Update the xlabel in case it was modified (via tth distortion)
1145- self .axis .set_xlabel (self .polar_xlabel , fontsize = 14 , family = 'serif' )
1145+ self .axis .set_xlabel (self .polar_xlabel , fontsize = 15 , family = 'serif' )
11461146
11471147 if rescale_image :
11481148 self .axis .relim ()
@@ -1243,7 +1243,7 @@ def polar_x_axis_type(self):
12431243 def on_polar_x_axis_type_changed (self ):
12441244 # Update the x-label
12451245 self .azimuthal_integral_axis .set_xlabel (self .polar_xlabel ,
1246- fontsize = 14 , family = 'serif' )
1246+ fontsize = 15 , family = 'serif' )
12471247
12481248 # Still need to draw if the x-label was modified
12491249 self .draw_idle ()
0 commit comments