Search found 6 matches

by lrebyc
Fri Nov 05, 2004 4:04 pm
Forum: JFreeChart
Topic: logarithmic chart
Replies: 1
Views: 2968

Hi,

I am also looking for a logarithmic chart. Have you already tested
org.jfree.chart.axis.LogarithmicAxis? Please send me your
experience.

c.
by lrebyc
Fri Nov 05, 2004 3:57 pm
Forum: JFreeChart
Topic: label angle
Replies: 9
Views: 6067

I just noticed, that you're working on version 0.9.8 (are you sure?). Should be very
old, 2004 starts with version 0.9.16?

The current version 0.9.21 implements setLabelAngle in the class Axis. ValueAxis
extends Axis, so there's no problem with the method.

Please check your version of jfreechart.
by lrebyc
Fri Nov 05, 2004 11:00 am
Forum: JFreeChart
Topic: label angle
Replies: 9
Views: 6067

I am not sure, if we are taking about the same, but what's about this:

// rotate Y-Axis
ValueAxis valAxis = (ValueAxis) plot.getRangeAxis();
valAxis.setLabelAngle(###angle###);

Should work for all axis, api says : angle - the angle (in radians)
by lrebyc
Fri Nov 05, 2004 10:56 am
Forum: JFreeChart
Topic: How to generate time series chart from JDBC data?
Replies: 1
Views: 2277

Hi, I did not try out your code. I think it shoud work with explicit casting your lineDataSet into XYDataset [...] chart = ChartFactory.createTimeSeriesChart (sTitle, // Title sDomainLabel, // Domain access label sRangeLabel, // Range access label (XYDataset) lineDataSet, // Dataset PlotOrientation....
by lrebyc
Tue Nov 02, 2004 5:36 pm
Forum: JFreeChart
Topic: ChartToPDF
Replies: 1
Views: 1994

ChartToPDF

Hi,

bought the developer documentation, but did not find the source for ChartToPDF
example. Could someone please send me the code, so I do not have to retype everything
for my own?

Thanks in advance!
by lrebyc
Sun Oct 31, 2004 7:10 am
Forum: JFreeChart
Topic: Scaling for export
Replies: 0
Views: 1454

Scaling for export

Hi, I am looking for the best scaling for exporting the chart. For example as *.eps (org.jibble.epsgraphics). Found some hints about scaling of PNG, but EPS works better for embedding in tex/pdf. Code: public void exportEPSChart(JFreeChart aChart, double width, double height, String filename) throws...