Advice needed on approaches/steps needed to represent a neo4j data source using a pivot table using JavaFX GUI?
Advice needed on approaches/steps needed to represent a neo4j data source using a pivot
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Nobody has written a pivot table for JavaFX. You could write one yourself, but it would be non-trivial.
You would likely be best off using an existing pivot table implementation such as the Swing pivot table from JideSoft.
Regardless of which UI component you use, you will probably need to write your own adapters to interface between neo4j and the UI component.
If you used a JavaFX TableView as a basis of a pivot table implementation, then you might create a neo4j data convertor for the jfxdata project which allowed you to interface with your pivot table.