mirror of https://github.com/Desuuuu/klipper.git
graphstats: Fix system graph title
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
661f5b08c8
commit
6f0b7c7a2a
|
@ -161,7 +161,7 @@ def plot_system(data):
|
||||||
|
|
||||||
# Build plot
|
# Build plot
|
||||||
fig, ax1 = matplotlib.pyplot.subplots()
|
fig, ax1 = matplotlib.pyplot.subplots()
|
||||||
ax1.set_title("MCU bandwidth and load utilization")
|
ax1.set_title("System load utilization")
|
||||||
ax1.set_xlabel('Time')
|
ax1.set_xlabel('Time')
|
||||||
ax1.set_ylabel('Load (% of a core)')
|
ax1.set_ylabel('Load (% of a core)')
|
||||||
ax1.plot_date(times, sysloads, '-', label='system load',
|
ax1.plot_date(times, sysloads, '-', label='system load',
|
||||||
|
|
Loading…
Reference in New Issue