在悬停

时间:2017-12-29 23:09:28

标签: python matplotlib

有没有办法创建一个函数,当我们将鼠标悬停在单个值上方时(例如,悬停索引和悬停索引之间的图表的一部分+3),在不创建大量系列的情况下,将图表的部分颜色以不同颜色着色对象和设置每个子图表的可见性? 下面我附上了所需状态的图片。

enter image description here

import matplotlib.pyplot as plt
import random
import pandas as pd

x = [x for x in range (0, 20)]
y = [random.random() for x in range (0, 20)]

x = pd.Series(x)
y = pd.Series(y)

plt.plot(x, y, 'o-', color = '#336699')
plt.show()

0 个答案:

没有答案