# HG changeset patch # User Markus Kottlaender # Date 1559129699 -7200 # Node ID 320aa3b85152252ce88c2b883c624400e20cfe8e # Parent 70cd7383325b3e82ebd92a685603ad246f5c4f37 client: fairway profiles: fixed waterlevel axis domain diff -r 70cd7383325b -r 320aa3b85152 client/src/components/fairway/Fairwayprofile.vue --- a/client/src/components/fairway/Fairwayprofile.vue Wed May 29 12:19:46 2019 +0200 +++ b/client/src/components/fairway/Fairwayprofile.vue Wed May 29 13:34:59 2019 +0200 @@ -527,8 +527,8 @@ let yScaleLeft = d3 .scaleLinear() .domain([ - this.refWaterlevels.LDC * 1.1, - this.refWaterlevels.LDC - yScaleRight.domain()[1] * 100 + this.refWaterlevels.LDC - this.maxAlt * 100, + this.refWaterlevels.LDC + this.maxAlt * 0.1 * 100 ]) .rangeRound([height, 0]);