Search found 14 matches

by ahury
Tue Jul 10, 2007 3:55 pm
Forum: JFreeChart
Topic: Annontation Position
Replies: 0
Views: 1463

Annontation Position

I use Annotation and I want to know if it's possible to défine the position . Actually I use

Code: Select all

setRangeAxisLocation(AxisLocation.TOP_OR_LEFT );
and my annotation is nearly the scatter. I want to I wish to shift my annotations . IS sommebody have an idea ?
by ahury
Fri Jun 29, 2007 8:42 am
Forum: JFreeChart
Topic: Show string information with XYItemLabelGenerator
Replies: 0
Views: 1465

Show string information with XYItemLabelGenerator

Iuse jfreechart to create a graph of help which shows points having for ordered the age and the abscissa its salary of the employees. My graph of points displays correctly but I would like to be able to show or my cloud of points or the name of each of the employees. I would like to know if it is po...
by ahury
Tue Jun 26, 2007 9:55 am
Forum: JFreeChart
Topic: XYLineAndShapeRenderer help
Replies: 3
Views: 3167

Yes I use
I do this
NumberAxis domainAxis = (NumberAxis) plot.getDomainAxis();
domainAxis.setTickUnit(new NumberTickUnit(domainTickUnit));

where domainTickUnit= 1000
but I want ticks every 500 and tick with label every 1000
by ahury
Mon Jun 25, 2007 9:18 am
Forum: JFreeChart
Topic: XYLineAndShapeRenderer help
Replies: 3
Views: 3167

XYLineAndShapeRenderer help

I use an XYLineAndShapeRenderer and I want to create an Y axis, which has his ticks increased all 500 and number label all 1000. Is it possible? Where i can find some sample ?
by ahury
Thu May 03, 2007 1:20 pm
Forum: JFreeChart
Topic: problem with dotrenderer
Replies: 8
Views: 5963

Thanks and another questions

Thanks for your help I have an other question.
Is it possible to create an Y axis, which has his ticks increased all 500 and number label all 1000?
by ahury
Thu May 03, 2007 11:38 am
Forum: JFreeChart
Topic: problem with dotrenderer
Replies: 8
Views: 5963

If I want to make this code XYDotRenderer dotRenderer= (XYDotRenderer) jfreechart.getXYPlot().getRenderer(); I have this error java.lang.ClassCastException: org.jfree.chart.renderer.xy.XYLineAndShapeRenderer. that's why I say it was an XYLineAndShapeRenderer. I don't create any renderer i think it's...
by ahury
Thu May 03, 2007 11:24 am
Forum: JFreeChart
Topic: How to change the size of a dot in a scatter plot
Replies: 2
Views: 3554

I use a scatter plot with and XYLineAndShapeRenderer. I use the ToolTipGenerator and URLGenerator methods.the p^roblem with this code is not possible to use this generator.
by ahury
Thu May 03, 2007 10:51 am
Forum: JFreeChart
Topic: problem with dotrenderer
Replies: 8
Views: 5963

Its a LineAndShapeRenderer
by ahury
Thu May 03, 2007 10:15 am
Forum: JFreeChart
Topic: problem with dotrenderer
Replies: 8
Views: 5963

it's an XYItemRenderer.
by ahury
Thu May 03, 2007 9:23 am
Forum: JFreeChart
Topic: problem with dotrenderer
Replies: 8
Views: 5963

problem with dotrenderer

I make a scatter plot with urlgenerator like this: jfreechart.getXYPlot().setDataset(0, datasetPoint); jfreechart.getXYPlot().getRenderer().setToolTipGenerator( toolTipGenerator); jfreechart.getXYPlot().setRenderer(1,dotRenderer); jfreechart.getXYPlot().getRenderer().setURLGenerator(urlGenerator); a...
by ahury
Wed May 02, 2007 9:08 pm
Forum: JFreeChart
Topic: How to change the size of a dot in a scatter plot
Replies: 2
Views: 3554

How to change the size of a dot in a scatter plot

Can anybody explain me with an example how I can change the size of the dot. I use a scatter plot .
by ahury
Wed Apr 25, 2007 10:58 am
Forum: JFreeChart
Topic: how to show tickslabel with scatterplot
Replies: 2
Views: 2714

Is it possible to make this by rewrite the method refreshTicksHorizontal of NumberAxis.
by ahury
Wed Apr 25, 2007 7:57 am
Forum: JFreeChart
Topic: where is the bug in my code? I need your help
Replies: 2
Views: 2928

What is your problem ?
by ahury
Tue Apr 24, 2007 3:40 pm
Forum: JFreeChart
Topic: how to show tickslabel with scatterplot
Replies: 2
Views: 2714

how to show tickslabel with scatterplot

I have create a graph which shows years and salaries and I want to show a label mark every 5 years and a mark tevery years on my horizontal axis .My graph is a scatter graph and I find to show the label every 5 years,not to show ticks marks every years .Can somebody help me ? Here is my code : jfree...