Search found 23 matches

by tatia34
Wed Jan 09, 2008 6:00 pm
Forum: JFreeChart
Topic: DualAxis line and bar on a dateAxis
Replies: 1
Views: 2784

DualAxis line and bar on a dateAxis

Hi, I try to do a dual axis chart with a dateAxis on the domain axis.

I've do a capture to explain what I obtain andI would have :
Image

I hope there is a solution.. :oops:

Thanks, tatia34
by tatia34
Fri Sep 21, 2007 10:43 am
Forum: JFreeChart
Topic: Ticks and tick labels
Replies: 9
Views: 28800

I just succeed to do it : - i've passed the DataTickUnit in parametre to the refreshTicks (and refreshTicksHorizontal and refreshTicksVertical) methods. - I've copy/paste the refreshTicksHorizontal method and instead of get DataTickUnit by the getTickUnit() method. It's not a really good development...
by tatia34
Fri Sep 21, 2007 9:45 am
Forum: JFreeChart
Topic: Ticks and tick labels
Replies: 9
Views: 28800

Hi,

I have an other problem with your solution : the CPU is 100% used when I use this fonction...
I do some other test but don't find a good solution :cry:

I hope that somebody could help me...

tatia34
by tatia34
Mon Sep 17, 2007 2:37 pm
Forum: JFreeChart
Topic: A problem in setting Range
Replies: 5
Views: 7423

Hi, is this feature know implemented ?
or how can we do to resolve this problem ?

thanks, tatia34
by tatia34
Mon Sep 17, 2007 2:19 pm
Forum: JFreeChart
Topic: Ticks and tick labels
Replies: 9
Views: 28800

Hi, I have the same need and try to use your solution (thank you for your code). I obtain the good grid : a vertical line per month, but the tick range isn't dynamic any more ... : - when the chart is create with a DateTickUnit[MONTH, 1] and when I decrease frame size, the dateTickUnit don't change ...
by tatia34
Thu Aug 16, 2007 2:27 pm
Forum: JFreeChart
Topic: specific visualisation of the domain axis
Replies: 0
Views: 2294

specific visualisation of the domain axis

Hi, I try to have a specific representation of the axis but I don't know if it's possible.... when I do domainAxis.setTickMarkPosition(DateTickMarkPosition.END); : http://img130.imageshack.us/img130/9528/grapheve7.th.png and what I would have : month labels are centered on bars ! http://img130.image...
by tatia34
Fri Jun 22, 2007 2:40 pm
Forum: JFreeChart
Topic: arg, can anyone tell me whats wrong with this?
Replies: 1
Views: 2883

can you give us the exception ?

Code: Select all

// on the catch bloc
e.printStackTrace(); 
by tatia34
Fri Jun 22, 2007 2:23 pm
Forum: JFreeChart
Topic: renderer.setOutlineStroke(....)
Replies: 2
Views: 4270

I use the last version of JFreeChart, but my renderer is a customRenderer... So it can be the solution :lol:
Where is the border drawing managed ? It is possible that I have forgot or replace the line of code...
by tatia34
Tue Jun 12, 2007 11:36 am
Forum: JFreeChart
Topic: renderer.setOutlineStroke(....)
Replies: 2
Views: 4270

renderer.setOutlineStroke(....)

hi, I try to increase the size of the border of my barChart.... but the Stroke is only increase on the legend and not on the chart... : http://img474.imageshack.us/img474/8665/testht0.png I use the method : renderer.setSeriesOutlineStroke(numSerie, new BasicStroke(3,BasicStroke.JOIN_ROUND,BasicStrok...
by tatia34
Thu Jun 07, 2007 9:05 am
Forum: JFreeChart
Topic: How can I draw grid lines
Replies: 1
Views: 3449

The solution :

Code: Select all

        plot.setDomainGridlinePaint(Color.black);
        plot.setRangeGridlinePaint(Color.black);
by tatia34
Thu May 24, 2007 3:26 pm
Forum: JFreeChart
Topic: Pie chart Legend format change
Replies: 5
Views: 8783

It's rigth that I label the pie sections and that the legend is redundant....
I will have a discuss with my training course chief to know if I can not display the legend...

thank you for the response
by tatia34
Wed May 23, 2007 4:12 pm
Forum: JFreeChart
Topic: Pie chart Legend format change
Replies: 5
Views: 8783

Hi,

I try to modify the legend to decrease the lenght of legend labels...
On CategoryPlot or XYPlot on, we can do a setFixedLegendItems(..) to change legends items... But for PiePlot, method doesn't exist... is-there a solution or I do rewrite a custom PiePlot ?
by tatia34
Tue May 22, 2007 3:27 pm
Forum: JFreeChart
Topic: zoom on category chart
Replies: 2
Views: 4760

zoom on category chart

Hi,

On category chart, the width of the zoom rectangle is fixed at the chart width...

is it possible to have a zoom like on time chart : zoom of just a part of the x axes... ?

thank you, tatia34
by tatia34
Tue May 22, 2007 3:23 pm
Forum: JFreeChart
Topic: Default Colours
Replies: 6
Views: 9867

mystery… yesterday evening, that did not draw with good colors, and this morning, I have restart my computer and there were good colors. :roll:
by tatia34
Mon May 21, 2007 9:20 am
Forum: JFreeChart
Topic: Default Colours
Replies: 6
Views: 9867

just before, I do jfc.setTitle(title); and it changes the title of my chart... so the jfc variable is OK and is the chart that I have to modify. but no color changes .... I don't understand what isn't going...

edit : more test, and it's ok for PiePlot but not for CategoryPlot and XYPlot...