ax['type1'].gridlines(draw_labels='180', color='grey', alpha=0.5, linestyle=':')
时间: 2023-08-06 21:15:06 浏览: 89
修改grid行或列颜色
问题出在 `draw_labels` 参数的值不合法,它只能接受布尔值 `True` 或 `False`。您传递的参数 `'180'` 不是一个有效的布尔值。
要解决这个问题,您只需要将 `draw_labels` 参数的值更改为 `True` 或 `False`,例如:
```
ax['type1'].gridlines(draw_labels=True, color='grey', alpha=0.5, linestyle=':')
```
或者:
```
ax['type1'].gridlines(draw_labels=False, color='grey', alpha=0.5, linestyle=':')
```
这将解决该错误并绘制所需的网格线。
阅读全文