Barchart

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
tduraipkt
Posts: 6
Joined: Mon Jun 26, 2006 6:17 am

Barchart

Post by tduraipkt » Wed Sep 27, 2006 7:41 am

Hi all,

I have created a BAR chart. For eg consider the datasets are
("A",23,"Strength")
("B",19,"Strength")
("C",45,"Strength")

I have got the bar chart, and for each bar in the x-axis it displays it's value such as A,B,C,etc, now what i need is the graph shouldn't display these values. Is there any method to do this :?: . Plz reply........

david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

Post by david.gilbert » Thu Sep 28, 2006 11:26 am

Code: Select all

axis.setTickLabelsVisible(false);
David Gilbert
JFreeChart Project Leader

:idea: Read my blog
:idea: Support JFree via the Github sponsorship program

Locked