Search found 19 matches

by asd
Fri Dec 10, 2010 2:27 pm
Forum: JFreeChart
Topic: Russian characters in labels
Replies: 9
Views: 11398

Re: Russian characters in labels

I have tried with Arial, Curier New, Times New Roman, Sans Serif, etc.

I have opensuse 11.

Don't know what else to try... :(
by asd
Fri Dec 10, 2010 2:06 pm
Forum: JFreeChart
Topic: Russian characters in labels
Replies: 9
Views: 11398

Re: Russian characters in labels

Yes, it works fine with Latin letters.
by asd
Tue Dec 07, 2010 3:22 pm
Forum: JFreeChart
Topic: Russian characters in labels
Replies: 9
Views: 11398

Re: Russian characters in labels

Hi again skunk,

I did everything you suggested, and it still didn't work. I even tried to set the title of the chart in Russian. It just shows an empty space, no dots, no squares.

Any other idea?
by asd
Tue Dec 07, 2010 2:42 pm
Forum: JFreeChart
Topic: Russian characters in labels
Replies: 9
Views: 11398

Re: Russian characters in labels

I reinstalled the fonts and the latest version of jfreechart (just in case), and it still didn't work.

Can anyone enlighten me?
by asd
Tue Dec 07, 2010 2:11 pm
Forum: JFreeChart
Topic: Russian characters in labels
Replies: 9
Views: 11398

Re: Russian characters in labels

Hi, thanks for the reply.

That didn't work either. But I can see the Cyrillic characters in my browser, so I believe they are installed in my computer as well.

Any other idea?
by asd
Mon Dec 06, 2010 6:05 pm
Forum: JFreeChart
Topic: Russian characters in labels
Replies: 9
Views: 11398

Russian characters in labels

Hi Everyone, I wanted to created a Bar Chart with Cyrillic characters in the labels (Russian). I used this method: domainAxis.setTickLabelFont(new Font("Arial", Font.PLAIN , 12)); But it does not work. I've tried with a lot of Font types, but it only shows three dots, instead of the Russian text. Do...
by asd
Tue Sep 23, 2008 1:33 pm
Forum: JFreeChart
Topic: integer scale in dial chart
Replies: 2
Views: 3531

Worked like a charm!

Thanks David.
by asd
Mon Sep 22, 2008 2:10 pm
Forum: JFreeChart
Topic: integer scale in dial chart
Replies: 2
Views: 3531

integer scale in dial chart

Hi all!

I just bought the jfreechart guide, and I haven't been able to find a way to set integer values in the scale. All the dial chart examples don't have integer values, so I don't know how to do this.

Thanks in advance.
by asd
Mon Aug 25, 2008 1:20 pm
Forum: JFreeChart
Topic: Curved Line Charts
Replies: 10
Views: 18303

Hi I instance an JFreeChart object JFreeChart chart = ChartFactory.createLineChar(..); so chart.getPlot(); returns a CategoryPlot chart.getXYPlot(); crash with: java.lang.ClassCastException: org.jfree.chart.plot.CategoryPlot cannot be cast to org.jfree.chart.plot.XYPlot CategoryPlot.setRenderer( new...
by asd
Fri Aug 15, 2008 5:16 pm
Forum: JFreeChart
Topic: series margin?
Replies: 0
Views: 1994

series margin?

Hi all, I have a CustomCylinderRenderer (which extends from CylinderRenderer, with extends from BarRenderer3D). I have four series with one category each. The problem is that the bars are very thin, and the space between each series is too large. I just want to widen the bars and shorten the space b...
by asd
Fri Aug 08, 2008 8:26 pm
Forum: JFreeChart
Topic: spiderweb more opaque
Replies: 1
Views: 2376

I found the solution, if you replace SpiderWebPlot.java with this class: http://personel.obec.go.th/News/index.php?q=aHR0cHM6Ly9zb3VyY2Vmb3JnZS5uZXQvdHJhY2tlci9pbmRleC5waHA%2FZnVuYz1kZXRhaWwmYW1wO2FpZD0xODczODQ5JmFtcDtncm91cF9pZD0xNTQ5NCZhbXA7YXRpZD0zNjU0OTQ%3D Then you can set the spiderweb opacity...
by asd
Fri Aug 08, 2008 1:44 pm
Forum: JFreeChart
Topic: spiderweb more opaque
Replies: 1
Views: 2376

spiderweb more opaque

Hi everybody!

I need to fill the spiderweb with a "more opaque" color. I am using black right now, and it is still too transparent for the client's taste.

Any suggestions?

Thanks.
by asd
Tue Aug 05, 2008 8:33 pm
Forum: JFreeChart
Topic: fatter/bigger points in spiderweb
Replies: 4
Views: 8477

After hours of searching I found it.

To draw bigger points you have to do this:

plot.setHeadPercent(0.03d);

The size is a percentage of the plot area height and width.

I wish this method had a more intuitive name.

Cheers.
by asd
Tue Aug 05, 2008 3:38 pm
Forum: JFreeChart
Topic: Value on the spiderwebplot's plot
Replies: 5
Views: 12686

Hi, newbie here,

Can anyone explain to me how to make this patch work?

Thanks.
by asd
Tue Aug 05, 2008 3:34 pm
Forum: JFreeChart
Topic: fatter/bigger points in spiderweb
Replies: 4
Views: 8477

I tried doing something like

plot.setLegendItemShape(new Rectangle(17, 17));

but nothing happend... :(

Thanks anyway.