Neri Marschik
Neri Marschik
Wow that's very weird! Thanks for the report. Actually had some similar bug here before and it was because of the data format / sorting. Could you post a small...
Thanks for the details! Any reason you pass is in as string? Just for clarification.
Thinking of it. If you pass a string the default scales will be ordinal and what you want is linear, which will be generated automatically if you pass numbers. So...
At the moment it's automatically decided by looking at a single data point in https://github.com/codesuki/react-d3-components/blob/master/src/DefaultScalesMixin.jsx Supported are ordinal, numerical and date scales by default. But what you pass in yourself...
Good catch!
I'll have a look :)
Hey, thank you! Have you considered tree shaking? I didn't check yet in my projects but reading about it, it should be helpful in your case. https://blog.craftlab.hu/how-to-do-proper-tree-shaking-in-webpack-2-e27852af8b21 I just checked...
You can add a legend as described in https://github.com/codesuki/react-d3-components/issues/92 About the scroll problem: you probably have to embed the chart inside a scrollable div or something!
Good idea! I was seeing those focus lines in some d3 examples and thought of enabling them somehow. I like your idea of people providing their own elements, that makes...
Hey, good use case. Select something and get more info for example, I guess. Should be possible. There was an issue requesting something similar and I am working on that.