Skip to content

With duplicated data, area mark goes a little nuts, line mark is fine #2193

Answered by mbostock
pdebruic asked this question in Q&A
Discussion options

You must be logged in to vote

It’s a consequence of the implicit stacking with areaY when you use the y channel. If you use the y2 channel instead (to set the topline of the area) then you can opt-out of the implicit stacking.

Plot.plot({
  marks: [
    Plot.areaY(toPlot, { x: "xVal", y2: "yVal", opacity: 0.3 }),
    Plot.line(toPlot, { x: "xVal", y: "yVal", tip: true })
  ]
})

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
2 replies
@pdebruic
Comment options

@mbostock
Comment options

Answer selected by mbostock
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
bug Something isn’t working
2 participants
Converted from issue

This discussion was converted from issue #2192 on October 09, 2024 20:02.