在matplotlib表中换行文本

时间:2017-04-07 12:21:54

标签: python matplotlib

我需要使用字典列表中的matplotlib创建一个表。

为此,我使用以下函数,我在本网站的另一个答案中找到了该函数:

import matplotlib.pyplot as plt
from matplotlib.externals import six
import matplotlib
matplotlib.rc('font', family='Arial')

def render_mpl_table(data, col_width=3.0, row_height=2, font_size=10,
                     header_color='#40466e', row_colors=['#f1f1f2', 'w'], edge_color='w',
                     bbox=[0, 0, 1, 1], header_columns=0,
                     ax=None, **kwargs):
    if ax is None:
        size = (np.array(data.shape[::-1]) + np.array([0, 1])) * np.array([col_width, row_height])
        fig, ax = plt.subplots(figsize=size)
        ax.axis('off')

    mpl_table = ax.table(cellText=data.values, bbox=bbox, colLabels=data.columns, **kwargs)

    mpl_table.auto_set_font_size(False)
    mpl_table.set_fontsize(font_size)

    for k, cell in six.iteritems(mpl_table._cells):
        cell.set_edgecolor(edge_color)
        if k[0] == 0 or k[1] < header_columns:
            cell.set_text_props(weight='bold', color='w', wrap=True)
            cell.set_facecolor(header_color)
        else:
            cell.set_facecolor(row_colors[k[0]%len(row_colors) ])
    return ax

问题是我无法将文本包装在单元格中,即使我将属性放在cell.set_text_props(weight='bold', color='w', wrap=True)

示例图片:enter image description here

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

最简单的方法是在文本中使用'\ n',然后按列宽和行高进行播放。它不是内置功能。<​​/ p>