PeriodAxis Outline and Gridline

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
iogan18tm
Posts: 24
Joined: Tue May 04, 2004 5:14 pm

PeriodAxis Outline and Gridline

Post by iogan18tm » Wed Sep 29, 2004 10:42 pm

Hi, i've got problem controlling PeriodAxis gridline (it cant be seen) and outline (it cant be removed or changed). Is there a bug in there?

iogan18tm
Posts: 24
Joined: Tue May 04, 2004 5:14 pm

Thats it

Post by iogan18tm » Wed Nov 24, 2004 11:34 am

In code of PeriodAxis there is no implementaion of refreshticks
[code]
public List refreshTicks(Graphics2D g2,
AxisState state,
Rectangle2D plotArea,
Rectangle2D dataArea,
RectangleEdge edge) {
return new java.util.ArrayList();
}
[/code]

This causes not-drawing of DomainGridlines when PeriodAxis is chosen for domain axis.
Hope to implement it.

Locked