如何在matplotlib中更改比例尺的字体大小?

vawmfj5a  于 2023-03-09  发布在  其他
关注(0)|答案(1)|浏览(172)

我知道如何使用导入的matplotlib_scalebar. scalebar模块设置比例尺参数中的"location"、"box_color"、"box_alpha"参数等。但是,当我尝试更改比例尺的字体大小时,我不知道如何使用"font_properties"参数。我应该在其中输入什么?如果我没有问清楚,请告诉我。
谢谢大家!

基本上,我想把这个字体变大。
我试过font_properties = 18,它返回"不支持的font_properties。以字符串形式传递dict或字体配置模式。"
我试过font_properties. set_size == 18和font_properties. set_size = 18,它说"位置参数跟随关键字参数",这在这里不是很有用。
欣赏你的洞察力!

7kqas0il

7kqas0il1#

必须将font_properties作为字典传递。请尝试ScaleBar(<*other parameters*>, font_properties={"size": 18})

相关问题