Search found 16 matches

by Pellegrino
Thu Nov 12, 2009 2:08 pm
Forum: JFreeChart
Topic: SpiderWebPlot
Replies: 2
Views: 3633

Re: SpiderWebPlot

Is this problem was solved in 1.0.13 version?
by Pellegrino
Thu Nov 12, 2009 11:35 am
Forum: JFreeChart
Topic: LayeredBarRenderer : adding the labels to bars in BarChart
Replies: 4
Views: 6953

Re: LayeredBarRenderer : adding the labels to bars in BarChart

You can do next:

Code: Select all

          Color[dataset.getRowCount()] colorList = { Color.red, Color.white ... Color.black};
          for(int i = 0; i < dataset.getRowCount(); i++)
              renderer.setSeriesPaint(i,colorList[i]);
by Pellegrino
Thu Sep 17, 2009 3:04 pm
Forum: JFreeChart
Topic: LayeredBarRenderer : adding the labels to bars in BarChart
Replies: 4
Views: 6953

Re: LayeredBarRenderer : adding the labels to bars in BarChart

Here is an answer final LayeredBarRenderer renderer2 = new LayeredBarRenderer(); StandardCategoryItemLabelGenerator categoryLabel = new StandardCategoryItemLabelGenerator("{2}",new DecimalFormat( "###.##" )); renderer2.setBaseItemLabelGenerator(categoryLabel); renderer2.setBaseItemLabelsVisible(true...
by Pellegrino
Thu Sep 17, 2009 3:02 pm
Forum: JFreeChart
Topic: Displaying Series Value ontop of Layered Bars
Replies: 2
Views: 4259

Re: Displaying Series Value ontop of Layered Bars

ATTENTION!!!! it really works :) it's a bug of JFreeChart. final LayeredBarRenderer renderer2 = new LayeredBarRenderer(); StandardCategoryItemLabelGenerator categoryLabel = new StandardCategoryItemLabelGenerator("{2}",new DecimalFormat( "###.##" )); renderer2.setBaseItemLabelGenerator(categoryLabel)...
by Pellegrino
Tue Jul 28, 2009 2:29 pm
Forum: JFreeChart
Topic: LayeredBarRenderer : adding the labels to bars in BarChart
Replies: 4
Views: 6953

Re: LayeredBarRenderer : adding the labels to bars in BarChart

I need quickly fix this problem!... Thanx
by Pellegrino
Tue Jul 28, 2009 1:21 pm
Forum: JFreeChart
Topic: how to get value of value axis on the top of bar chart
Replies: 3
Views: 7998

Re: how to get value of value axis on the top of bar chart

Salut! I have a problem with LayeredBarRenderer! It doesn't want to show the labels of each bar! LayeredBarRenderer renderer = new LayeredBarRenderer(); StandardCategoryItemLabelGenerator categoryLabel = new StandardCategoryItemLabelGenerator("{2}",new DecimalFormat( "(###.##)" )); renderer.setSerie...
by Pellegrino
Wed Jul 22, 2009 2:51 pm
Forum: JFreeChart
Topic: LayeredBarRenderer : adding the labels to bars in BarChart
Replies: 4
Views: 6953

LayeredBarRenderer : adding the labels to bars in BarChart

Hello, I have a problem with showing the labels for one bar in BarChart. They are not just visible! Is it a bug? //StackedBarRenderer renderer = new StackedBarRenderer(); LayeredBarRenderer renderer = new LayeredBarRenderer(); renderer.setBaseItemLabelGenerator(new StandardCategoryItemLabelGenerator...
by Pellegrino
Wed Jul 08, 2009 10:25 am
Forum: JFreeChart
Topic: Change position of Axis Label
Replies: 1
Views: 2513

Change position of Axis Label

Hello!

I try to find a way to solve next problem: I want to change the position of Axis Label.
For example, I want to move an AxisLabel "Time" to the left side of axis. Is it possible to do this?

Thanx
by Pellegrino
Tue Jul 07, 2009 4:38 pm
Forum: JFreeChart
Topic: Type of Chart
Replies: 8
Views: 10158

Re: Type of Chart

Evrika!!!! Almost the same!!! // CategoryAxis CategoryAxis valueAxis1 = new CategoryAxis(); valueAxis1.setLabelFont(labelFont); valueAxis1.setTickLabelFont(tickLabelFont); // NumberAxis ValueAxis valueAxis2 = new NumberAxis(); valueAxis2.setTickLabelsVisible(false); MinMaxCategoryRenderer renderer =...
by Pellegrino
Tue Jul 07, 2009 11:39 am
Forum: JFreeChart
Topic: How to delete the Max and Min Icons?
Replies: 0
Views: 2299

How to delete the Max and Min Icons?

Hello!

I use MinMaxCategoryRenderer to generate CategoryPlot. Can I delete the Max and Min Icons? Or the only way to do this - it's to set the transparent image?

Merci d'avance
by Pellegrino
Tue Jun 30, 2009 3:03 pm
Forum: JFreeChart
Topic: Type of Chart
Replies: 8
Views: 10158

Re: Type of Chart

1) for CandleStickChart: 1. Can I make the top and bottom line for every "candle" (see my picture for example...)? (it's necessary) 2. Is it possible to add the graphic of Constant (or horizontal line) ? and dotted line? 2) for HighLowChart: 1. (see 1.1) 2. It needs to have a small rectangle on ever...
by Pellegrino
Tue Jun 30, 2009 2:40 pm
Forum: JFreeChart
Topic: Type of Chart
Replies: 8
Views: 10158

Re: Type of Chart

by Pellegrino
Tue Jun 30, 2009 10:19 am
Forum: JFreeChart
Topic: Type of Chart
Replies: 8
Views: 10158

Re: Type of Chart

Excuse me, now you can access there...
by Pellegrino
Mon Jun 29, 2009 5:37 pm
Forum: JFreeChart
Topic: Type of Chart
Replies: 8
Views: 10158

Type of Chart

Hello!

I have a problem with choosing the type of chart, that I need.
and it needs to create almost the same in JFreeChart (TickLabels can be sample).

Thank you very much for give me your opinion.
by Pellegrino
Thu Jun 18, 2009 9:23 am
Forum: JFreeChart
Topic: Compression not supported
Replies: 2
Views: 3517

Re: Compression not supported

Thanks, it works with OpenJDK.