1. Question on TimeSeries image map creation jfree.orgHello all, I've been getting some good results by outputting my TimeSeries chart to various web pages via my charting servlet. However, I'm struggling with enabling "drill down" capabilities. I've been using some of Richard Atkinson's code as a template, but I don't seem to be getting an image displayed on my web page any more. I know the chart is ... |
2. changing some point images on a TimeSeries jfree.orgHi, I would like to make some points on a TimeSeries chart filled in and some points hollow. What is the best approach to accomplish this? I have data associated with each point (in a separate data structure) that has a flag that says if the point should be solid or hollow. Thanks in advance. Ed |
4. TimeSeries with images to indicate the X values jfree.orgHi, Does anybody have a clue for me on how to plot a time plot that has icons representing a X value iso a line going up and down. So i.s.o.: x ^ | 10 9 8 x 7 x 6 x x 5 x 4 x 1 2 3 4 5 6 7 8 9 10 --> t I would ... |
5. Images as series shapes jfree.org |
7. adding image on TimeSeries Chart jfree.orgHi all I want to add images at particular points in Time Series chart. In normal XYChart this can be achieved using annotation as below XYPlot plot = chart.getXYPlot(); ImageIcon imageIcon = null; imageIcon = new ImageIcon("D:/JFreeChartDemo/JFreeChartDemo/src/demo1/img2.png"); XYAnnotation xyannotation = null; xyannotation = new XYImageAnnotation(10, 10, imageIcon.getImage()); plot.addAnnotation(xyannotation); Above code will display image at co-ordinates (10,10). I tried to do same ... |