Search found 13 matches

by JfreeFan
Fri Jul 13, 2007 10:11 am
Forum: JFreeChart
Topic: How to show Item Label dynamically !!
Replies: 3
Views: 3455

Hey Dave,
Thanks for reply,but i have to show chart as PNG file.When i try in ChartPanel,toolstip works great.But in browser its not rendering info.
Any suggestion what to do more??
by JfreeFan
Wed Jul 11, 2007 12:56 pm
Forum: JFreeChart
Topic: How to show Item Label dynamically !!
Replies: 3
Views: 3455

How to show Item Label dynamically !!

Hey, I want that on my chart item label display only when i bring mouse on chart. i.e.when i move cursor on chart it should display y value .i am using CategoryItemLabelGenerator generator = new StandardCategoryItemLabelGenerator( "{2}", new DecimalFormat("0.0")); line3d.setSeriesItemLabelGenerator(...
by JfreeFan
Mon May 14, 2007 11:21 am
Forum: JFreeChart
Topic: Y label is not displaying
Replies: 3
Views: 3503

I tried to reproduce this, but it works fine for me. Can you post a small self-contained demo that shows the problem? David, Here is image http://img242.imageshack.us/my.php?image=ylabelnotshowingkq8.jpg You will notice that Y label is not displaying where its expected to do.I am exporting to chart...
by JfreeFan
Thu May 10, 2007 9:26 am
Forum: JFreeChart
Topic: Y label is not displaying
Replies: 3
Views: 3503

Y label is not displaying

Hi All, i have very queer problem.My chart is not displaying Y-label. snippet of code is NumberAxis3D yAxis = new NumberAxis3D(); CategoryPlot plot = new CategoryPlot(dataset,xAxis,yAxis,line3d); chart = new JFreeChart(title, (new Font("", Font.BOLD, 12)), plot, true); yAxis=(NumberAxis3D)plot.getRa...
by JfreeFan
Sun Apr 22, 2007 9:04 am
Forum: JFreeChart
Topic: JSP, JFreeChart, and JBoss
Replies: 1
Views: 3196

Re: JSP, JFreeChart, and JBoss

AggressiveFish wrote:A very generous programmer gave me an example of how JFreeChart can be used in a JSP but I can't seem to get it up and running.
How you r exporting your chart to JSP??You may use SVG to view your chart in your browser.
by JfreeFan
Wed Apr 18, 2007 11:42 am
Forum: JFreeChart
Topic: 3D line chart
Replies: 11
Views: 12709

3D Line Chart

Richard,
Some how i managed to solve trend line shrink problem.Now pls refer
http://img218.imageshack.us/my.php?imag ... nuezj7.png
chart & trend line gets discontinue where data value is null.I expect to draw in continuity.
How to draw chart in continuity??
any suggestion!!
by JfreeFan
Sat Apr 14, 2007 5:58 am
Forum: JFreeChart
Topic: 3D line chart
Replies: 11
Views: 12709

3D Line Chart

Richard, OK,I started in debugg mode & found value in loop is taking 01-March to 07-March.Also if i draw trend line in isolation i.e.without line chart it draws from 01-Mar to 07-Mar that is perfect.But combined with line chart it shrinks one position from both ends thats problem. Appreciate your ef...
by JfreeFan
Fri Apr 13, 2007 12:06 pm
Forum: JFreeChart
Topic: 3D line chart
Replies: 11
Views: 12709

3D Line Chart

Hi,
Sorry i may not communicate properly.Here is image.
http://img99.imageshack.us/my.php?image=chartbv1.jpg
Its self explanatory and you will notice Trend line is drawing between 2-march To 6-March,where as its expected to be between 1-March to 7-March.
Thanks
by JfreeFan
Thu Apr 12, 2007 11:01 am
Forum: JFreeChart
Topic: 3D line chart
Replies: 11
Views: 12709

3D line Chart

Hi, Now i am able to draw 3d Line Chart by using DefaultCategoryDataset and CategoryAxis3D.But problem is as: How i can manipulate column/row keys ?? Also as Richard suggest for trend line my line chart & trend line is drawing as 3D, but trend lines shrinks one position from start & end point. Any H...
by JfreeFan
Thu Apr 05, 2007 4:17 pm
Forum: JFreeChart
Topic: Multiple CategaryData set Problem
Replies: 1
Views: 2345

Multiple CategaryData set Problem

Hey,
I am trying to create 3d Line chart with Trend lines.
By using default Category dataset i am able to draw 3d Line chart.But i also have to draw trend line chart on same chart.
But both domain & range axis get disturb.
:roll:
Can any one suggest how it can be achieved???
by JfreeFan
Thu Apr 05, 2007 10:49 am
Forum: JFreeChart
Topic: 3D line chart
Replies: 11
Views: 12709

3D line chart

Richard,
Thanks for reply.I tried with steps you suggested.But unfortunatily its drawing 2D only.
I found CategoryPlot class can plot 3d Chart...
So genuine question how we can use CategoryPlot & CategoryDataset for drawing y-point with respect to x-point...
Any further suggestions are welcome.
by JfreeFan
Wed Apr 04, 2007 11:46 am
Forum: JFreeChart
Topic: 3D line chart
Replies: 11
Views: 12709

3D line chart

Hi All,
Can any one suggest how to draw line chart with 3D effect.
I need to plot y point corresponding to its x points.
Thanks in advance
by JfreeFan
Fri Mar 23, 2007 12:31 pm
Forum: JFreeChart
Topic: TimeSeies with 3D Effect
Replies: 0
Views: 1541

TimeSeies with 3D Effect

Hey, I am trying to draw Timeseries3D Chart.Code is public JFreeChart createTimeSeries3D(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation,boolean legend) { if (orientation == null) { throw new IllegalArgumentException("Null 'orientation' argument.");...