1

I am using the scatterplot type in dc.js. It does a great job but whenever I go beyond 10k points it becomes very laggy and loses the smoothness I'm used to in dc.js.

Is there an alternative implementation of this plot within dc.js or will I have to resort to using a different library for that one ? If different library, which one?

Gordon
  • 19,811
  • 4
  • 36
  • 74
Chapo
  • 2,563
  • 3
  • 30
  • 60

1 Answers1

0

Yes, tens of thousands of DOM elements and you run into trouble.

Could you please try out this pull request for a canvas-based scatterplot and leave a review on the ticket?

It should be easy to paste into your copy of dc.js if you don't want to do the git magic.

We just need to port it to D3v4 and add a couple tests and it will be ready to merge.

Gordon
  • 19,811
  • 4
  • 36
  • 74