Git Product home page Git Product logo

Comments (6)

williaster avatar williaster commented on May 18, 2024

hey @nouman91 thanks for checking out visx. in SVG, rendering order is based on the document order, and since the document order depends on the order you render them in react, you can think of it as "first xychart child gets rendered at the bottom of the visual stack, and the last is rendered at the top". (this is true for axis/series/annotations, the main exception is probably tooltip which is always bubbled to the top)

so to get what you want, you should do something like the following (currently your AreaSeries is last, so it would be rendered on top)

<XYChart {...}>
  <AreaSeries />
  <LineSeries />
  <GlyphSeries />
</XYChart>

from visx.

nouman91 avatar nouman91 commented on May 18, 2024

@williaster Thank you for replying so quickly. Yeah, I had tried switching its place but it did not working. This is the result if I use the above arrangement.
Screenshot 2024-04-02 at 5 11 42 PM

I also tried other position but its always stays there

from visx.

nouman91 avatar nouman91 commented on May 18, 2024

This is how it looks if I remove the line series. I think there is something essential I am missing & can't quite figure it out the what.

Screenshot 2024-04-03 at 2 15 36 PM

from visx.

williaster avatar williaster commented on May 18, 2024

to me it looks like your x-accessor is returning different data since the series are not aligned (hard to tell without a code snippet, but the x-accessor is different in your original code snippet). also to make the bottom of the area not map to zero you need to specify bot y0Accessor (lower) and yAccessor.

from visx.

nouman91 avatar nouman91 commented on May 18, 2024

I managed to put together a dirty code sandbox please check when you get a chance
https://codesandbox.io/p/sandbox/xy-scatter-chart-zprp3r

from visx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.