views:

989

answers:

6

Dear All,

Is there any Java library that supports hierarchical column?

For example (the first three row are columns) :


2008 |

January | February |

Week1 | Week2 | Week3 | Week 1 | Week2 | Week3 |

10 | 20 | 14 | 12 | 15 | 3 |

Thanks

+2  A: 
VonC
A: 
eed3si9n
A: 
eed3si9n
A: 

Hi,

If you are looking for a JavaEE solution you might want to have a look at [fleXive], an open source (LGPL for the framework and GPL for the optional backend with visual editors). Please feel free to ask any questions on the forums.

Markus Plesser
A: 

Dear All,

Thanks for your answers. Actually I need it for my desktop-based application. Currently I'm evaluating SWT table, but seems it does not support hierarchical table column. Maybe I'll take a look at Swing JTable.

A: 

Or just follow this tutorial to use native JTable and JTree together: http://java.sun.com/products/jfc/tsc/articles/treetable1/index.html

User1