如何在JupyterLab黑暗主题中看到图形图例和刻度?

时间:2018-05-24 22:22:28

标签: matplotlib jupyter-lab

当使用JupyterLab(版本0.32.0)黑暗主题时,图形刻度和图例是不可见的,因为前景色和背景色非常接近。如何让它们可见?

以下是一些插图截图:

绘图代码:

{{1}}

灯光主题中的输出数字:

黑暗主题中的输出数字相同:

备注

JupyterLabMatplotlib的Github问题已多次询问此问题,telamonianblink1073已回答此问题。我在这里重新发布并重新回答这个问题,以便更容易地找到答案。

根据JupyterLab的issue 3855,即将发布的版本可能会解决此问题。

1 个答案:

答案 0 :(得分:2)

在这里引用telamonianblink1073的手动解决方法:

  

plt.style.use('dark_background')

以下是一个简短的演示:

代码:

import matplotlib.pyplot as plt

%matplotlib inline

plt.style.use('dark_background')
plt.plot(list(range(10)), list(range(10)))