Search found 4 matches

by TranceTip
Mon Sep 17, 2007 1:23 pm
Forum: JFreeChart
Topic: Line Overlapping
Replies: 3
Views: 4590

What do you mean by "next to the other"? Do you mean that you want one line to be drawn not at exactly the correct value but slightly above or below the value? You could also compare your data points and decide whether the series are too close to one another. In this case you could hide one of the s...
by TranceTip
Mon Sep 17, 2007 1:20 pm
Forum: JFreeChart
Topic: Time Series Variable Scale
Replies: 1
Views: 3161

I don't think it's easily possible to have different scales in such cases.

What about using a logarithmic scale for all of the points if the maximum value is much larger than the average value?
by TranceTip
Thu Sep 13, 2007 6:10 pm
Forum: JFreeChart
Topic: Ticks and tick labels
Replies: 9
Views: 28800

I managed to hack up a solution by overriding DateAxis.drawTickMarksAndLabels(). The method itself doesn't draw the domain grid lines (only the ticks and tick labels), but returns an AxisState object which contains the list of ticks drawn and which is later passed on to XYPlot.drawDomainGridlines()....
by TranceTip
Thu Sep 13, 2007 4:39 pm
Forum: JFreeChart
Topic: Ticks and tick labels
Replies: 9
Views: 28800

Ticks and tick labels

Hi, in my XYPlot of a time series chart I'm using a DateAxis for the domain axis which displays months. I want each month to have a vertical grid line, so I tried using a 1-month TickUnit. However, the tick labels for the months (formatted as "mm/yyyy") will then overlap each other if the width of m...