We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcc0c0b commit f8b2fedCopy full SHA for f8b2fed
gnmic-plotter.py
@@ -41,7 +41,7 @@ def update_plot(metric_data):
41
if not data:
42
continue
43
times, values = zip(*data)
44
- ax.plot_date(times, values, "-", color="green", label=metric)
+ ax.plot(times, values, "-", color="green", label=metric)
45
46
ax.set_xlabel("Time", color="white")
47
ax.set_ylabel("Value", color="white")
0 commit comments