Search found 2 matches
- Fri Dec 21, 2007 11:57 am
- Forum: JFreeChart
- Topic: XYSplineRender
- Replies: 1
- Views: 3226
XYSplineRender
Hi i m using XYsplineRender along with XYPlot.... to draw a smooth curve graph instead of line chart suppose i m using the points (1,2) (2,4) (3,1) (3,8) and (4,5) for drawing the curve ....the curve is drawn with four point only and the point (3,8) is ignored while joining the curve....ie the curve...
- Tue Nov 27, 2007 2:23 pm
- Forum: JFreeChart
- Topic: setting individual lines in linechart
- Replies: 1
- Views: 2341
setting individual lines in linechart
hi i m using xyplot to display some 4 or 5 lines.i want to set specific color for each line. i set the color of the line by XYItemRenderer xyir = xyPlot.getRenderer(); xyir.setSeriesPaint(index,lineColor); xyir.setSeriesStroke(index, stroke); suppose if i have the 2 lines and if i give red color to ...