@@ -910,14 +910,14 @@ def set_titles(
910
910
# Only label the ones with data
911
911
if d is not None :
912
912
coord , value = list (d .items ()).pop ()
913
- title = nicetitle (coord , value , maxchar = maxchar )
913
+ title = nicetitle (coord , value )
914
914
ax .set_title (title , size = size , ** kwargs )
915
915
else :
916
916
# The row titles on the right edge of the grid
917
917
for index , (ax , row_name , handle ) in enumerate (
918
918
zip (self .axs [:, - 1 ], self .row_names , self .row_labels , strict = True )
919
919
):
920
- title = nicetitle (coord = self ._row_var , value = row_name , maxchar = maxchar )
920
+ title = nicetitle (coord = self ._row_var , value = row_name )
921
921
if not handle :
922
922
self .row_labels [index ] = ax .annotate (
923
923
title ,
@@ -936,7 +936,7 @@ def set_titles(
936
936
for index , (ax , col_name , handle ) in enumerate (
937
937
zip (self .axs [0 , :], self .col_names , self .col_labels , strict = True )
938
938
):
939
- title = nicetitle (coord = self ._col_var , value = col_name , maxchar = maxchar )
939
+ title = nicetitle (coord = self ._col_var , value = col_name )
940
940
if not handle :
941
941
self .col_labels [index ] = ax .set_title (title , size = size , ** kwargs )
942
942
else :
0 commit comments