From 4e6457accde38876ecdf8bb1c6f1e8bce8fd2139 Mon Sep 17 00:00:00 2001 From: Vovka Morkovka Date: Thu, 20 Jun 2024 20:13:12 -0400 Subject: [PATCH] This closes #1926, fix secondary vertical axis title is not displayed (#1928) --- drawing.go | 1 - 1 file changed, 1 deletion(-) diff --git a/drawing.go b/drawing.go index 49b7fcbc74..bbd75ecbcc 100644 --- a/drawing.go +++ b/drawing.go @@ -1088,7 +1088,6 @@ func (f *File) drawPlotAreaValAx(pa *cPlotArea, opts *Chart) []*cAxs { if opts.order > 0 && opts.YAxis.Secondary && pa.ValAx != nil { ax.AxID = &attrValInt{Val: intPtr(opts.YAxis.axID)} ax.AxPos = &attrValString{Val: stringPtr("r")} - ax.Title = nil ax.Crosses = &attrValString{Val: stringPtr("max")} ax.CrossAx = &attrValInt{Val: intPtr(opts.XAxis.axID)} return []*cAxs{pa.ValAx[0], ax}