From 75471ba6e8ac6e3cdd677c78d7c8cd492d63c5a9 Mon Sep 17 00:00:00 2001 From: surtur Date: Fri, 8 Jul 2022 19:01:21 +0200 Subject: [PATCH] go(plot): set default plotter line width --- algo/plot.go | 1 + 1 file changed, 1 insertion(+) diff --git a/algo/plot.go b/algo/plot.go index abd3160..8312a7e 100644 --- a/algo/plot.go +++ b/algo/plot.go @@ -22,6 +22,7 @@ func plotAllDims(algoStats []stats.Stats, fPrefix, fExt string) { pHeight := 13 * vg.Centimeter plotter.DefaultFont.Typeface = preferredFontStyle + plotter.DefaultLineStyle.Width = vg.Points(1.5) for _, s := range algoStats { p := plot.New()