如何使用mplcursors在Django Matplotlib Scatterplot中添加工具提示

时间:2019-05-24 13:49:24

标签: python django matplotlib

我正在尝试使用mplcursor在散点图中添加工具提示。.它工作正常..但是当我将其与django集成时,它不起作用

import matplotlib.pyplot as plt
import numpy as np
import mplcursors
np.random.seed(42)
fig, ax = plt.subplots()
ax.scatter(*np.random.random((2, 26)))
ax.set_title("Mouse over a point")
mplcursors.cursor(hover=True)
plt.show()

0 个答案:

没有答案