Scroll « Development « JFreeChart Q&A





1. Scroll the Chart    jfree.org

Hi to all, I have Gantt Chart (similar) in a JScrollPane. How can I scroll the chart to ensure the time period request is visible in the panel??? There is no live data, I only need to scroll the Jpanel for example to show a day that is not in the current viewport. thanks faz

2. Scroll live data    jfree.org

3. Scroll to move through a dynamic chart    jfree.org

Hi there! I'm using a CombinedDomainXYPlot with Dynamic data and I've set the fixed auto range property of its domain axis to a few seconds, just to see the last part of the graph every moment, at the same time that I'm receiving new data. However, I'd like to have the posibility of moving through the whole chart to check some ...

4. scrolling    jfree.org

5. Scroll inside a chart    jfree.org

Hi all, After searching the forum about JFreeChart capabilities for scrolling a chart i have several possibilities (tell me if i am wrong) : - 1 : Put the chart inside a JScrollPane : using this solution involves (for horizontal scrolling for example) that the left axis of the chart doesn't stay always visible. - 2 : A scrollbar to my ...

6. Scroll chart    jfree.org

Hello, I'm trying to do a scroll in a chart. My chart: JFreeChart chart1 = ChartFactory.createTimeSeriesChart( "Grfico", // chart title "Fecha", "Velocidad m/s", data, // data true, // include legend true, false ); where data is a JDBCXYDataset. data = new JDBCXYDataset(conecction); String sql = "SELECT date,Vel1,Vel2 FROM MyTable "; data.executeQuery(sql); Now, I don't Know ... panel.getChart().getXYPlot().getDomainAxis().setUpperBound(......); model.setExtent(.....); panel.getChart().addChangeListener(new ChartChangeListener() { ...

7. Scroll a jfreechart and show time periods more detailed????    jfree.org

I have a jfreechart which shows time series. I would like to have a more detailed view on the past days even if the whole time period shown is some years. But I want to be able to srcoll to the days in the past years also. I do not want to scroll the whole panel, just the chart. At the ...

8. repaint when scrolling problem    jfree.org

Thanks in advance to anyone willing to help me with this problem. I have 2 BarCharts inside a scrollPanel (there are several other panels involved but nothing that should matter). When I scroll down and then back up, the right most region of the BarChart "bleeds" up to the top of the panel. THis is a clearly defined region, the rest ...

9. Using JFreeChart in to produce 25+ charts in the same scroll    jfree.org

Hello, I am relatively new to Java, and want to confirm this before we go on and fix JFreeChart as the component to be used in an upcoming project. The application would require a single scrollable window (using Swing) that produces 25+ charts (say, 5 rows with 5 charts each). The user should easily scroll within the window (because all the ...