moritz / svg-plot

Various plot types with SVG output, with Perl 6
Artistic License 2.0
13 stars 5 forks source link

Legend box too small for long text and typo in plot-legend-box #25

Open Odud opened 4 years ago

Odud commented 4 years ago

The legend box is too small for a string such as "JUPITER EMERGING EUROPEAN OPPS ". I have bodged this by changing the 0.7 factor in the statement that calculates $width to 0.77. This works for the above example but since I don't understand the calculation I don't know if this is correct for all string lengths.

`my $width = 10 + 0.77 * $.legend-font-size

Also there is a typo on line 589 of Plot.pm

style => 'stroke: black; **strok**-width: 0.5; fill: none',

Apologies that I don't know enough about git to be able to do a pull request.