icoert
icoert
> You are right, you would have to dig into coordinate grid mixin and find out! To my knowledge no one has done this with dc.js yet. I followed the...
> I wasn’t able to load your fiddle - perhaps too much data. So I don’t know if the “something” that is happening is a good thing. I’ll try again...
[Here is what I did](https://drive.google.com/open?id=13Fc7qUeADWd4vu5u8xosgI41map714C5) The behaviour of zooming/panning and filtering based on zooming is not the one I expected. (I am close anyway) I duplicated the class CoordinateGridMixin as...
Yes, exactly! The zoom and pan are still somehow limited to X axis. I would like to achieve something similar with this [example](https://www.d3-graph-gallery.com/graph/interactivity_zoom.html#axisZoom).
I edited directly dc.js :( [here it is](https://drive.google.com/drive/folders/13Fc7qUeADWd4vu5u8xosgI41map714C5) --> CoordinateGridMixinForScatter
It really does the thing, but it's not perfect yet. It seems that panning is not working. I don't know why in my case when I edit dc.js, because of...
Thanks, I really apreciate your effort. This is how I fixed the error: ```js _updateD3zoomTransform () { if(d3Selection.event != null) if (this._zoom && d3Selection.event.sourceEvent.type !== 'wheel' && d3Selection.event.sourceEvent.type !== 'mousemove')...
One more thing which seems to not working well. If I call the function focus() or refocusAll() the scatter gets the initial state, but when I zoom in it starts...
I avoided that by eliminating the filtering feature while you zoom. I tried to make a clean path using a two dimensional filter, because once you zoom on both axes...
I didn't use my fork. You can find the [dc.js attached in my drive](https://drive.google.com/open?id=13Fc7qUeADWd4vu5u8xosgI41map714C5). I am not so skilled with pull requests, most because I have a lack of experience....