Labels for horizontal bars

This commit is contained in:
David Gustavsson 2021-02-28 09:20:20 +01:00
parent 5cc08a17b6
commit a75d309d20

View File

@ -416,7 +416,11 @@ end
end
if !isnothing(plotattributes[:series_annotations])
annotations := (x,y,plotattributes[:series_annotations].strs,:bottom)
if isvertical(plotattributes)
annotations := (x,y,plotattributes[:series_annotations].strs,:bottom)
else
annotations := (y,x,plotattributes[:series_annotations].strs,:left)
end
series_annotations := nothing
end