I am trying to center the text inside a matplotlib table cell, while the default seems to be right aligned. I looked through the documentation of the Table object, but I cou
According to documentation, there is this metthod in cell object :
set_text_props(self, **kwargs)
kwargs may refers to text methods/attribute, such this one:
horizontalalignment or ha = [ 'center' | 'right' | 'left' ]
So, what about :
cell.set_text_props(ha='center')