-
hi
m vivek...i saw ur demo application at http://www.randelshofer.ch/oop/treeviz/index.html
in that u ve implemented hypertree structure for directory..
can we implement the same for a xml file..can u pls help me out.
2008-07-02 10:50:58 UTC by profee
-
im not a pro java coder..jus finished my degree..so i want help...if u can send me the demmp applet code...it can help me in learning and understanding..please help me
regards
vivek.
2008-07-02 10:39:37 UTC by profee
-
guys can u help me out..m stuck in representing the data in hypertree can u pls help me.
2008-07-02 10:38:42 UTC by profee
-
Very good work :)
No sorry, I don't have working experience with very large trees such as yours.
Yes, it's possible to reduce the length between the father and the children nodes, if that's what you mean by "space lost by the edges". It's the "length" variable in the HTModel class.
Hope that's help.
2007-09-28 09:39:39 UTC by koto
-
I forgot to mention, that I already made a number of adjustments to improve the performance of hypertree:
- The renderer 'prunes' the tree, when it detects that there is not enough space available to render a subtree.
- During animation and interaction, the tree is rendered without antialiasing.
- Rendering is done in two threads to take advantage of multiprocessor machines.
I still...
2007-09-17 10:58:24 UTC by rawcoder
-
Hi there,
Das anyone have experience with visualizing very large trees?
I mean trees with 500'000 nodes and more.
I noticed, that a lot of visual space is lost by the edges.
Is it possible to increase the density of the tree, so that more nodes fit onto the display at the same time?
TIA,
-Werner.
2007-09-17 10:57:29 UTC by rawcoder
-
No problem ! You don't bug me, don't worry :-)
It's better to ask than to spent too much time when a fast answer could resolve it fastly.
K.
2004-11-04 08:44:27 UTC by koto
-
Well turns out i didnt update the jar file correctly. sorry, once again, my careless mistake. spent hours before realising what a stupid thing i was doing putting the new class file in the wrong directory! It works now. Here is my code anyway:
public void mouseClicked(MouseEvent e) {
if (e.isShiftDown()) {
model.restore();
} else if (e.isControlDown()) {.
2004-11-03 18:59:11 UTC by ladyoflight
-
It should have worked, it seems to be the right thing to do fo me. Can you send me your code of the mouseClicked method, or at least of the part you've modified ?
K.
2004-11-02 09:51:43 UTC by koto
-
hi,
im back! :)
Currently the tree reorients itself on left as well as right clicks. I was trying to disable reorienting the tree on right clicking because i want the node that is currently focussed on to stay at the center on just a right click because i want to highlight it with a different color. I tried to modify the mouseClicked method inside HTAction class to check for right click...
2004-11-02 00:48:32 UTC by ladyoflight