在Matplotlib中,我可以通过ax.text(x_coord, y_coord, string, bbox = dict(boxstyle='round'), wrap = True, fontproperties = FontProperties_object)
我也可以通过matplotlib.font_manager.FontProperties
设置字体类型。
与squarify
相比,它看起来很相似,因为正方形内有文本。如何设置字体并使用squarify
进行文本换行?谢谢。
最佳答案
我试过了,效果不错。text_kwargs={"fontproperties": FontProperties_object}
。文本选项以“dict”的形式给出,如中所述
https://github.com/laserson/squarify/blob/master/squarify/init.py
关于python - 在Squarify中设置字体和自动换行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50662007/