Dash line

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Jane
Posts: 14
Joined: Wed Jun 25, 2008 7:16 pm

Dash line

Post by Jane » Fri Aug 29, 2008 6:35 pm

Hello,

How do I draw a dash line?

Thanks in advance!

Jane

tox0tes
Posts: 34
Joined: Tue Aug 05, 2008 7:05 pm

Post by tox0tes » Fri Aug 29, 2008 7:50 pm

Code: Select all

float dash[] = { 3.0f };
plot.getRenderer(0).setSeriesStroke(1, new BasicStroke(1.0f, BasicStroke.CAP_BUTT, BasicStroke.JOIN_MITER, 3.0f, dash, 0.0f));

Locked