Does Vaadin have a pivot grid component? Not listed on their site.
I looked at something like
devexpress but don't see something in Vaadin like that.
Does Vaadin have a pivot grid component? Not listed on their site.
I looked at something like
devexpress but don't see something in Vaadin like that.
There is no official stock component in Vaadin that integrates pivot functionality yet. There are basically two approaches you want to explore.
If your dataset is large, it is better not to load the whole data to browser at once. Then you should do the pivoting in Java (or even in database level). There is example of doing pivot in Java here. Just calculate the pivot result to list of HashMaps, and show that in regular Grid component.
If the dataset is small, then it is possible to do the pivoting in browser logic. There is one add-on in Vaadin's directory that does that, called Pivot Table.