--
You received this message because you are subscribed to the Google Groups "dc-js user group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dc-js-user-gro...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/b91a43bc-323f-4dba-81be-45322a8c414d%40googlegroups.com.
On Jan 27, 2020, at 12:40 AM, vivek raju <rapsta...@gmail.com> wrote:
On Friday, January 24, 2020 at 11:32:01 PM UTC+5:30, Gordon Woodhull wrote:
Great! It's on the develop branch. It will get merged to master when we make the next release.
On Jan 24, 2020, at 12:59 PM, vivek raju <rapsta...@gmail.com> wrote:
Hey Gordon,
Could you please add the source code in the master branch? Thanks for the reply, this is what i was actually looking for.
On Friday, January 24, 2020 at 6:38:49 PM UTC+5:30, Gordon Woodhull wrote:Hi Vivek!I added an example of the simplest custom chart I could think of, using ES6:http://dc-js.github.io/dc.js/examples/custom-chart.htmlReally you just need an object that implements .render() and .redraw(), and use dc.registerChart it when you initialize (here in the constructor).The comments in the old answer that has been serving as the how-toshow some other methods you might need to implement, depending on other features you use.(I regard these as bugs, but it is easy enough to work around so there hasn't been motivation to fix them.)Cheers,Gordon--
You received this message because you are subscribed to the Google Groups "dc-js user group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dc-js-us...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/b91a43bc-323f-4dba-81be-45322a8c414d%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "dc-js user group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dc-js-user-gro...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/c5d8c476-3472-4ce0-9369-7aeb6b4dbee0%40googlegroups.com.
<DCjs Error.PNG>
On Apr 21, 2021, at 2:43 PM, Marquisio <jelo...@gmail.com> wrote:
Hi, right now I'm dealing with the same problem of integrating my d3 hexbin chart to dc.js, so I guess it is ok to expand this conversation instead of making a new one. I found older stackoverflow questions regarding this topic. I get the general idea of registerChart and implementing my own render() and redraw() methods, but I don't know how to start with that. My main problem of understanding is the way of creating chart instance/object for registry. Can that object be already implemented chart in d3.js or it has to be some kind of general object for that kind of chart ? Any help or tip would be really appreciated.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/4d4a8514-1688-44b0-90b6-1f568c8e33bbn%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/d6c4c68f-c1bb-4a6c-b11b-00213802ad6an%40googlegroups.com.
On Apr 25, 2021, at 6:45 AM, Marquisio <jelo...@gmail.com> wrote:
Right now I'm stuck with part where I can't brush my hexbin chart. I guess it is not correctly synced with dc.js (but chart is here, in my dashboard). I extended CoordinateGridMixin to my chart which should give me brush option. If I'm thinking correctly, probably it has something to do with <svg> and <g> elements that my chart is not fully synced. I tried to use as much as I can functions like width(), height() and x(), and also tried to reach internal <svg> that was made from that, but no success. Am I missing something crucial ? Sorry if I'm all over the place with questions.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/529af4fe-0cc2-495e-9ede-a8cbb81b5441n%40googlegroups.com.
On Apr 25, 2021, at 9:52 AM, Marquisio <jelo...@gmail.com> wrote:
I thought brush is something that could be easily used here if I extend CoordinateGridMixin. I also have a histogram which can be burhsed so i thought hexbin chart would behave the same way (in histogram I have bars, and here I have hexbins). I'm making a bigger dashboard with multiple charts, but only hexbin is one that is not directly compatible with dc. So my idea is just that it blends with everything else. For selection, probably is better to click on the cells, but brushing it like a scatter plot is also ok.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/f45d5134-354c-405e-adca-431b5b92aabdn%40googlegroups.com.
On Apr 25, 2021, at 10:20 AM, Marquisio <jelo...@gmail.com> wrote:
If I decide to go with clicking on a cell, is a heatmap example good enought to reference on, because in it we are clicking rectangles ?
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/f06e15c6-6bdb-4ec0-be41-3376f8f17eadn%40googlegroups.com.
On Apr 28, 2021, at 3:02 PM, Marquisio <jelo...@gmail.com> wrote:
Hi Gordon, I decided two go with rectangular brush and applied RangedTwoDimensionalFIlter. Now I tried calling functions replaceFilter() and redrawGroup() inside my component (just like it is done in scatter plot), but I'm getting errors of undefined function. I don't know is it something regarding javascript ( I tried all cases of fixing it, if it is javascript problem) or I can't call this function like that.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/df043b1b-57cc-4d80-8752-d5504845f84dn%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/d91fe469-e31c-437d-8ee3-87120b152702n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/84f270f4-26d0-42f2-b541-dc3619dfc45bn%40googlegroups.com.
All the charts change when one is brushed. What I want to have is that when I brush hexbin chart it automatically greys out hexbins that are not inside brush rect. I'm currently using this.data() to extract data. When other charts are brushed my hexbin is filtered fine because I can recognize in this.data() which values are filtered. Only issue is when I brush hexbin chart I cant recognize on its side which data is filtered because now this.data() doesn't have any value=0 which indicates if data is filtered. Sry if it is complicated to understand because only that one case is not working properly.
Best regards.
To unsubscribe from this group and stop receiving emails from it, send an email to dc-js-user-group+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/84f270f4-26d0-42f2-b541-dc3619dfc45bn%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "dc-js user group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dc-js-user-group+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/EC24ABEF-3C87-4A1E-9076-C8CDC7F8DCA4%40woodhull.com.
Hi Marquisio,
To unsubscribe from this group and stop receiving emails from it, send an email to dc-js-user-gro...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/84f270f4-26d0-42f2-b541-dc3619dfc45bn%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "dc-js user group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dc-js-user-gro...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/EC24ABEF-3C87-4A1E-9076-C8CDC7F8DCA4%40woodhull.com.
--
You received this message because you are subscribed to the Google Groups "dc-js user group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dc-js-user-gro...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/CAOSahPjUhwcRWQu0PhFH3b6Gob9FhpcF-sa1iK6zTg2TQecPLg%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/CAOSahPjUhwcRWQu0PhFH3b6Gob9FhpcF-sa1iK6zTg2TQecPLg%40mail.gmail.com.
Hi Marquisio,
To unsubscribe from this group and stop receiving emails from it, send an email to dc-js-user-gro...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/84f270f4-26d0-42f2-b541-dc3619dfc45bn%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "dc-js user group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dc-js-user-gro...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dc-js-user-group/EC24ABEF-3C87-4A1E-9076-C8CDC7F8DCA4%40woodhull.com.
--
You received this message because you are subscribed to the Google Groups "dc-js user group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dc-js-user-gro...@googlegroups.com.