hide y-axis labels in xyplot

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

hide y-axis labels in xyplot

Post by ken stickler » Fri Feb 21, 2003 7:28 am

Hi,

is there a way to hide the y-axis labels and y-axis tick marks in a XYPlot?

Thanks,

ken

David Gilbert

Re: hide y-axis labels in xyplot

Post by David Gilbert » Fri Feb 21, 2003 1:27 pm

All axes inherit these methods from the Axis class:

public void setTickLabelsVisible(boolean);
public void setTickMarksVisible(boolean);

Regards,

Dave Gilbert

Locked