Search found 5 matches

by Qohelet
Fri Oct 16, 2009 8:45 am
Forum: JFreeChart
Topic: TickUnits use wrong hours
Replies: 6
Views: 10559

Re: TickUnits use wrong hours

No idea...?

Could it be a bug?
by Qohelet
Fri Oct 09, 2009 1:33 pm
Forum: JFreeChart
Topic: Display Percentage/Dollar Sign in Range Axis values
Replies: 7
Views: 12066

Re: Display Percentage/Dollar Sign in Range Axis values

Did you try it by setting the range?
by Qohelet
Fri Oct 09, 2009 7:18 am
Forum: JFreeChart
Topic: TickUnits use wrong hours
Replies: 6
Views: 10559

Re: TickUnits use wrong hours

But back to my question... No - I don't think that the TimeZone is the problem because the old project works correctly and my location hasn't changed - or do you mean something particular? Here are the important parts of my Program: this.chart = ChartFactory.createCandlestickChart( this.mainTitle, t...
by Qohelet
Fri Oct 09, 2009 7:07 am
Forum: JFreeChart
Topic: TickUnits use wrong hours
Replies: 6
Views: 10559

Re: TickUnits use wrong hours

It's not very difficult to do this - DateAxis has to be changed a little bit: 1. I need two new variables private double winkel; //The angle I need private boolean mywinkel = false; //Do I need the angle? 2. Then I need getter/setter: public double getWinkel() { return winkel; } public void setWinke...
by Qohelet
Thu Oct 08, 2009 10:22 am
Forum: JFreeChart
Topic: TickUnits use wrong hours
Replies: 6
Views: 10559

TickUnits use wrong hours

Hello! I'm using jFreeChart 1.0.13 and I want to set a TickUnit every six hours. At 6, 12, 18 and 24:00. For this I used the following Code: ((DateAxis) plot.getDomainAxis()).setTickUnit(new DateTickUnit(DateTickUnitType.HOUR,6, new SimpleDateFormat("EE dd.MM HH"))); ((DateAxis) plot.getDomainAxis()...