Search found 4 matches

by Ericode
Tue Jan 23, 2018 7:17 am
Forum: JFreeChart
Topic: Extend the duration of tooltips in JFreeChartFX
Replies: 1
Views: 3485

Extend the duration of tooltips in JFreeChartFX

Hello, How can I extend the duration of the tooltips? I know I can use a ChartPanel but how can I add a ChartPanel to my javafx application? I am using the ChartCanvas to draw the chart but how can I extend the duration of a tooltip? I have my own ToolTip generator but there are no options to extend...
by Ericode
Thu Jan 18, 2018 3:41 am
Forum: JFreeChart
Topic: Update Gantt Chart
Replies: 1
Views: 3305

Re: Update Gantt Chart

I have the code below defined and when I call collection.removeAll() it clears the data but not the keys. Why is this and how do I clear the keys? TaskSeriesCollection collection Edit: I fixed it. For anyone else who has trouble, you need to use collection.getColumnKeys().clear() as removeAll() just...
by Ericode
Tue Jan 16, 2018 7:02 am
Forum: JFreeChart
Topic: Update Gantt Chart
Replies: 1
Views: 3305

Update Gantt Chart

I have a gantt chart and when I try to update the chart it appends the left hand side. My ArrayList has the correct data inside and it gets renamed properly but when I try to refresh the chart it appends the data. I posted images and the code I have for my update method below. Before Update: https:/...
by Ericode
Sat Jan 13, 2018 10:07 pm
Forum: JFreeChart
Topic: ChartViewer inside a Container
Replies: 1
Views: 3791

ChartViewer inside a Container

Hi, is it possible to put the chartviewer inside a Pane or GridPane? Most of the examples have it inside the scene and I need to put it in a container. I am trying to have it display in a GridPane and it will not display unless it is the actual scene. I have 3 cases, 2 of them don't work and one doe...