[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-04-06 Thread Silverfox
It's just a proof of concept so far... I still need to debug, improve, customize etc, before making a plug-in Le vendredi 6 avril 2018 20:32:22 UTC+2, @TiddlyTweeter a écrit : > > Good stuff! > > Small point. On hover I see "Noam" mentioned in the Seth ring but I don't > see that name displayed

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-04-06 Thread @TiddlyTweeter
Good stuff! Small point. On hover I see "Noam" mentioned in the Seth ring but I don't see that name displayed in its sub-circle? Silverfox wrote: > > It now works with "flat" (non nested) json and also csv tiddler, see the > demo here : > http://d3jsv5trial.tiddlyspot.com/#D3%20ZCP%20widget%20

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-04-06 Thread Silverfox
It now works with "flat" (non nested) json and also csv tiddler, see the demo here : http://d3jsv5trial.tiddlyspot.com/#D3%20ZCP%20widget%20based%20on%20flat%20csv. This is done by some d3 methods that can parse and stratify data... -- You received this message because you are subscribed t

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-04-01 Thread TonyM
Silverfox, Thanks for moving on that, CSV will make it more accessible and also integrate with TiddlyWiki even more. Regards Tony On Monday, April 2, 2018 at 2:21:48 AM UTC+10, Silverfox wrote: > > Thank you all for your comments. > > I have worked few weeks ago on a TW macro that generates a

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-04-01 Thread Silverfox
Thank you all for your comments. I have worked few weeks ago on a TW macro that generates a json based on the TW table of content... it works but, I'm not really happy with it, as it requires to click on a button. Since D3 V4.x, there is a new command ( https://github.com/d3/d3-hierarchy#strati

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-31 Thread David Gifford
Just want to echo everyone's compliments. I always wanted someone to do something more with d3 and expand to other visualizations, but hesitated to ask. This is really cool. Some things to consider as you tweak it: 1) I will definitely play sometime soon with the CSS and come up with some cool

Re: [tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-31 Thread @TiddlyTweeter
Impressive what you have done! Good stuff. I would like this data to be generated by the content of TiddlyWiki > Right. That is the central issue. If you can't do that then you might just as well use an existing online version to generate the output. I think to get the numbers inputs you gonn

Re: [tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-31 Thread BurningTreeC
@Nicolas You made great progress, awesome! I've seen that one can use this to pass a filter to a widget and get the tiddler titles: var tiddlers = $tw.wiki.filterTiddlers(this.myTiddlerFilter); to get the filter: CirclePackWidget.prototype.execute = function() { // Get the parameters fr

Re: [tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-30 Thread Silverfox
This is exactly what I would like to do... but I still need to learn (be helped) to reach it Nicolas Le samedi 31 mars 2018 00:01:04 UTC+2, Jan a écrit : > > Great! > I want more!!! > More displays like this and a little more explanation: Where does the data > come from. > I would love to use

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-30 Thread TonyM
Silverfox, I see great potential for this because TiddlyWiki can be used to represent many things, and new visualisations of what ever your tiddlywiki represents are valuable. This is especially true if it helps navigate real content. Looking good. Inclusions such as a field "bubble-caption" f

Re: [tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-30 Thread Jan
Great! I want more!!! More displays like this and a little more explanation: Where does the data come from. I would love to use something like this as a table of content: It would be great if the captions of the bubbles could open links (to Tiddlers) Again: Great work -Jan Am 30.03.2018 um 21

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-30 Thread Silverfox
This post to inform you that I succeeded to implement the *zoomable circle packing* D3 widget (for D3.js v5.0.0) You can see it here : http://d3jsv5trial.tiddlyspot.com Nice isn't it ? I have added a small tutorial for dummies (like me), it may push others to further combine D3.js and TW Many

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-28 Thread Silverfox
I have updated http://d3jsv5trial.tiddlyspot.com I could implement the widget for *Circle packing *(still need to understand how to improve with CSS style rather than hardcoding), but I failed, so far, to implement *Zoomable circle packing* ( https://bl.ocks.org/mbostock/7607535). I cannot u

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-28 Thread Silverfox
Thank you for you're support ... I learn a lot thanks to you... I'll investigate and let you know Le mardi 27 mars 2018 23:13:02 UTC+2, BurningTreeC a écrit : > > > maybe it's this line in the widget >> >> var diameter = +svg.attr("width"); >> > > ok sorry ;) that's in the demo, too > > I'm no jav

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-27 Thread BurningTreeC
> maybe it's this line in the widget > > var diameter = +svg.attr("width"); > ok sorry ;) that's in the demo, too I'm no javascript genius -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving email

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-27 Thread BurningTreeC
maybe it's this line in the widget var diameter = +svg.attr("width"); -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-27 Thread BurningTreeC
@Silverfox I took a look at the chart in your demo with rightclick on the chart - inspect there's a tab called "inspector" ... it shows all the html elements If you find the chart elements, you see that the widget doesn't calculate correct values for the circle radius and the translate offsets

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-27 Thread BurningTreeC
> I'm not sure to understand (sorry, I'm a beginner)... > you mean that you just need to copy/paste the content of d3.min.js in > $:/plugins/tiddlywiki/d3/d3.js ? > there is no adaptation / modification ? > > Yes you can simply copy it without modifying it -- You received this message becaus

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-27 Thread Silverfox
I'm not sure to understand (sorry, I'm a beginner)... you mean that you just need to copy/paste the content of d3.min.js in $:/plugins/tiddlywiki/d3/d3.js ? there is no adaptation / modification ? Le mardi 27 mars 2018 21:28:27 UTC+2, BurningTreeC a écrit : > > You can try another d3js version i

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-27 Thread Silverfox
> > Hi, is the svg._groups[0][0] correct? > I changed that in the barwidget, too , but just because it made an error > disappear. I was sceptical if it was the right way.. > > I would investigate that > > BTC > Yes it looks OK -- You received this message because you are subscribed to the Go

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-27 Thread BurningTreeC
You can try another d3js version if you want to check if it's a bug To do so you can head over to the github repository, go to releases and download a zipped release Unzip it, look for the d3.min.js file and copy its content to the d3.js tiddler -- You received this message because you are su

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-27 Thread BurningTreeC
@BurningTreeC > > > I tried to adapt this https://bl.ocks.org/mbostock/7607535 which is > native D3.js V4. > I put it in http://d3jsv5trial.tiddlyspot.com, but i face the same kind > of bug than with the previous trial. > > All the data items that should be spread on the tiddler, are actually al

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-27 Thread Silverfox
@BurningTreeC I tried to adapt this https://bl.ocks.org/mbostock/7607535 which is native D3.js V4. I put it in http://d3jsv5trial.tiddlyspot.com, but i face the same kind of bug than with the previous trial. All the data items that should be spread on the tiddler, are actually all concentrate

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-26 Thread BurningTreeC
I made few progress on barWidget, by correcting few details in the D3 code but still have a bug. > > > The (temporary) result is here : http://d3jsv5trial.tiddlyspot.com > > It looks to be linked with the function transitionGrouped() ... > When activated, all the x value are zero (or undefined) >

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-26 Thread Silverfox
I made few progress, by correcting few details in the D3 code but still have a bug. The (temporary) result is here : http://d3jsv5trial.tiddlyspot.com It looks to be linked with the function transitionGrouped() ... When activated, all the x value are zero (or undefined) I still need to investig

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-25 Thread Silverfox
Than you so much, l'll play with it during the next few days, and I'll share the result Nicolas -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubs

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-25 Thread BurningTreeC
> @BurningTreeC > > Oh yes that would be great, I will then adapt the 2 demo widget and can >> add some others. >> > Thanks > > @Silverfox I've put it here: http://d3js500.tiddlyspot.com/ all the best, Simon -- You received this message because you are subscribed to the Google Groups "

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-25 Thread Silverfox
@BurningTreeC Oh yes that would be great, I will then adapt the 2 demo widget and can add > some others. > Thanks -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-25 Thread BurningTreeC
@Jed Carty I think you're referring to http://rboue.tiddlyspot.com/ three.js is very nice, I used it to render molecules in 3d within tw the purpose of *d3.js *appears to be a bit different - I think, representing data in a statistical manner, graphs, connections and so on three.js seems to b

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-24 Thread Jed Carty
In my experience Three.js is easier to use than d3.js. Someone made a plugin for three.js but it would also need to be updated. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-24 Thread Silverfox
I'm currently learning to build some other D3 widgets than the cloud and the bar, but as my skills are limited and there is no documentation, i do it mainly through trial and errors ...it takes time, but I think I can do it. I'll publish my results when the results will be good enough. But, for

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-24 Thread BurningTreeC
> D3 (now in v4) is a great bit of gear. The TW plugin is really currently > only a proof of concept. > now in v5 > > Personally I'd use it extensively to make Word Clouds IF it were as bit > easier to integrate into TiddlyWiki. To achieve that we need so

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-24 Thread @TiddlyTweeter
D3 (now in v4) is a great bit of gear. The TW plugin is really currently only a proof of concept. Personally I'd use it extensively to make Word Clouds IF it were as bit easier to integrate into TiddlyWiki. To achieve that we need someone tech. happy to do the needed work. Especially methods to

[tw] Re: will D3.js plugin be upgraded to version 4.x ?

2018-03-24 Thread BurningTreeC
Hi @Silverfox D3 seems to be easy to update this is the repository where the source code is: https://github.com/d3/d3 under "releases" there's the latest versio 5.0.0 to download this is the tiddlywiki repository https://github.com/Jermolene/TiddlyWiki5 and here's the d3 tiddlywiki plugin: