go(plot): stop adding plot grid
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-07-08 17:41:25 +02:00
parent 1380cf3cdc
commit 29bc85ba59
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -38,8 +38,6 @@ func plotAllDims(allStats []stats.Stats, fPrefix, fExt string) {
p.Title.TextStyle.Font.Weight = 2 // SemiBold
p.Title.Padding = 10 * vg.Millimeter
p.Add(plotter.NewGrid())
for _, dim := range s.BenchFuncStats {
// infinite thanks to this SO comment for the interface "hack":
// https://stackoverflow.com/a/44872993