Is there a JTreeTable implementation that allows you to change the row height

I searched a bit on this. I need JTreeTableone that supports variable row height. In particular, I want the lines that show the top-level nodes to be higher than the child lines below them.

I am using the SwingX ( JXTreeTable) implementation , which is based on Sun source articles . However, it specifically prohibits variable line heights and without overwriting JXTreeI do not see the path.

Any tips / pointers would be greatly appreciated before I get down to something nasty ...

+5
source share
1 answer

NetBeans has an Outline component, which is a tree table, and it can be used outside of NetBeans (just find the JAR files you need). Here is an article about it: http://netbeans.dzone.com/news/taking-new-swing-tree-table-a-

Maybe I'm wrong, but I think that it supports variable row heights.

+2
source

All Articles