chose my one scale in the x-axis and for timeseries chart

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
riadhhwajdii
Posts: 12
Joined: Tue Aug 25, 2009 9:12 am
antibot: No, of course not.

chose my one scale in the x-axis and for timeseries chart

Post by riadhhwajdii » Tue Aug 25, 2009 10:14 am

hi
i am using timeseries chart
i would like to use my one scale in the x-axis and y-axis(for example for the y-axis: every 2 unit)
how can i do this

paradoxoff
Posts: 1634
Joined: Sat Feb 17, 2007 1:51 pm

Re: chose my one scale in the x-axis and for timeseries chart

Post by paradoxoff » Wed Aug 26, 2009 9:33 pm

Code: Select all

numberAxis.setTickUnit(new NumberTickUnit(5.0));

Locked