comparison client/src/components/fairway/Fairwayprofile.vue @ 3555:76eafbf0a98d

client: fairway profiles: re-added stroke to fairway box
author Markus Kottlaender <markus@intevation.de>
date Fri, 31 May 2019 15:22:30 +0200
parents 067ad32fba69
children 9e296d686f16
comparison
equal deleted inserted replaced
3554:efa468653d48 3555:76eafbf0a98d
492 graph 492 graph
493 .append("path") 493 .append("path")
494 .datum([{ x: startPoint, y: depth }, { x: endPoint, y: depth }]) 494 .datum([{ x: startPoint, y: depth }, { x: endPoint, y: depth }])
495 .attr("fill", "#002AFF") 495 .attr("fill", "#002AFF")
496 .attr("fill-opacity", 0.65) 496 .attr("fill-opacity", 0.65)
497 .attr("stroke", "transparent") 497 .attr("stroke", "#002AFF")
498 .attr("stroke-width", 2)
498 .attr("d", fairwayArea); 499 .attr("d", fairwayArea);
499 } 500 }
500 }, 501 },
501 drawLabels({ graph, height }) { 502 drawLabels({ graph, height }) {
502 graph 503 graph