# HG changeset patch # User Bernhard Reiter # Date 1562152352 -7200 # Node ID 0c5816af79a5c2c16cbf040bae241a7fc3fdc2ca # Parent 110436ee8ed22f977f61306179679f534a5b746e client: improve pdf generation of Fairwayprofile * Improve legend graphic style of lines to be closer to the screen. diff -r 110436ee8ed2 -r 0c5816af79a5 client/src/components/fairway/Fairwayprofile.vue --- a/client/src/components/fairway/Fairwayprofile.vue Wed Jul 03 12:38:13 2019 +0200 +++ b/client/src/components/fairway/Fairwayprofile.vue Wed Jul 03 13:12:32 2019 +0200 @@ -513,13 +513,13 @@ this.pdf.doc.circle(x, y, 2, "FD"); this.pdf.doc.text(x + 3, y + 1, "Water"); - this.pdf.doc.setLineDashPattern([0.3], 0); + this.pdf.doc.setLineDashPattern([0.8], 0); this.pdf.doc.setDrawColor("#0000ff"); this.pdf.doc.setFillColor("#fcfacc"); this.pdf.doc.circle(x, y + 5, 2, "FD"); this.pdf.doc.text(x + 3, y + 6, "Fairway (LOS 1)"); - this.pdf.doc.setLineDashPattern([1], 0); + this.pdf.doc.setLineDashPattern([1.8], 0); this.pdf.doc.setFillColor("#fdfce5"); this.pdf.doc.circle(x, y + 10, 2, "FD"); this.pdf.doc.text(x + 3, y + 11, "Fairway (LOS 2)");