Plot.getSeriesOutlineStroke(int)

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Andreas Schroeder

Plot.getSeriesOutlineStroke(int)

Post by Andreas Schroeder » Tue Sep 17, 2002 1:41 pm

must be

return seriesOutlineStroke[index % seriesOutlineStroke.length];

not

return seriesOutlineStroke[index % seriesOutlinePaint.length];

(line 662) or am I wrong?

Regards,

Andreas Schroeder

David Gilbert

Re: Plot.getSeriesOutlineStroke(int)

Post by David Gilbert » Tue Sep 17, 2002 4:07 pm

Thanks for the report, you are correct. It will be fixed in CVS asap.

Regards,

DG.

Locked