Search found 20 matches

by Karthicks
Wed Feb 13, 2008 6:39 am
Forum: JFreeChart
Topic: how to get axis bounds
Replies: 2
Views: 3583

Dear mhilpert ,

You got it wrong. API you specified just returns the maximum value in the dataset. I required Java Graphics Paint Area of Axis i.e I need axis bounds in terms java graphics shape.

S.Karthick
by Karthicks
Tue Feb 12, 2008 4:25 pm
Forum: JFreeChart
Topic: how to get axis bounds
Replies: 2
Views: 3583

how to get axis bounds

Dear Jfreechart Users and Developers , We are using Jfreechart to generate chart as image in our web service (http://db.zoho.com). We use entity collection feature to show tooltip , url etc. Similar to entity collection do you have any API to get ValueAxis/categoryAxis Bounds (java shape). Using tha...
by Karthicks
Wed Oct 10, 2007 12:31 pm
Forum: JFreeChart
Topic: Limited date range
Replies: 6
Views: 5700

To support year from 0 to 9999 we the zoho db team has changed below files in jcommon , In jcommon/source/org/jfree/date/SerialDate.java < public static final int SERIAL_UPPER_BOUND = 2958465; --- > public static final int SERIAL_UPPER_BOUND = 2958465+693960; < public static final int MINIMUM_YEAR_S...
by Karthicks
Wed Oct 10, 2007 6:22 am
Forum: JFreeChart
Topic: ZohoDB chart are built using JFreechart
Replies: 1
Views: 2366

ZohoDB chart are built using JFreechart

Dear JfreeChart Members , We the zoho team has developed on line reporting service using JFreeChart API. Zoho is suite of online office tool Refer below sample chart link, http://db.zoho.com/ZDBDataSheetView.cc?DBID=4000000021992&OBJID=4000000022864 For more details sign in http://db.zoho.com . It i...
by Karthicks
Wed Sep 27, 2006 10:00 am
Forum: JFreeChart
Topic: candlestick volume not plotted with correct value
Replies: 1
Views: 2583

candlestick volume not plotted with correct value

Hi , In CandleStickChart volume is not rendered properly. If i provide a vlaue 0f 100 it plots a bar up to 60 only. I found that in candlestick renderer you compute volume bar height to different value based on maximm and minimum value in the given volume data. Why this computaion and plotting. Do I...
by Karthicks
Sat Sep 23, 2006 11:19 am
Forum: JFreeChart - Stockmarket
Topic: Yahoo stock chart like pic
Replies: 5
Views: 23287

To read data from Excel. You can use any parser search for any parser. I think you can use open office API to parse Excel data. In open office there is option to run open office as server. via remote API you can parse the data.

Then dump the data in DB. and do it.


S.Karthick
by Karthicks
Fri Aug 06, 2004 7:09 am
Forum: JFreeChart
Topic: Roadmap...
Replies: 38
Views: 51976

david.gilbert wrote: For server side development I don't know - leave the developers to work it out? I have already posted regarding thread handling in java client(swing client). In regard web client , server will process tha page submitted in single thread. Let us say with in the jsp when you insta...
by Karthicks
Fri Aug 06, 2004 7:05 am
Forum: JFreeChart
Topic: Roadmap...
Replies: 38
Views: 51976

david.gilbert wrote: For server side development I don't know - leave the developers to work it out? I have already posted regarding thread handling in java client(swing client). In regard web client , server will process tha page submitted in single thread. Let us say with in the jsp when you insta...
by Karthicks
Thu Aug 05, 2004 10:12 am
Forum: JFreeChart
Topic: like to Integrate TableModel Adapters
Replies: 1
Views: 2333

like to Integrate TableModel Adapters

Dear Development Team, In our organisation we have developed Table model adater to serve as jfreechart model. Say table model Categories Value SeriesName High 30 Series1 Low 10 Series1 Medium 20 Series1 High 30 Series2 Low 13 Series2 Above table model will. be adapted to categorical modeladapter. Li...
by Karthicks
Mon Jul 19, 2004 10:05 am
Forum: JFreeChart
Topic: A big problem when runing in linux,pls..help me...
Replies: 3
Views: 3312

Hi , This is due display error. Probabily you would have run the tomcat server in non x mode (you would have telnet the machine and started the tomcat server in non x mode). solutions , 1) start the server in x mode (konsole /prompt etc) 2) Or export DISPALY to the client machine from which you conn...
by Karthicks
Thu May 13, 2004 10:07 am
Forum: JFreeChart
Topic: Convert chart for ImageMap
Replies: 4
Views: 3662

You can associate URL generator withthe chart. By this way you can set those information as URL parameter on each bar. Refer URL generator API of JFreechart.
by Karthicks
Wed Aug 27, 2003 7:37 am
Forum: JFreeChart
Topic: Question on SymbolicAxis
Replies: 4
Views: 4848

Hi,
this is an breakage already reported by me. It has benn fixed in CVS.

Refer the reply in below link,

http://www.jfree.org/phpBB2/viewtopic.php?p=15420#15420

S.Karthick
by Karthicks
Wed Aug 20, 2003 7:03 am
Forum: JFreeChart
Topic: 0.9.10 breakage symbolic axis
Replies: 1
Views: 2820

0.9.10 breakage symbolic axis

Dear JFreechart Team , Sysmbolic Axis functionality is broken in 0.9.10 and in 0.9.11. To test run any examples say SymbolicChartDemo1 i.e. java -classpath lib\gnujaxp.jar;lib\jcommon-0.8.5.jar;jfreechart-0.9.10.jar;jfreech art-0.9.10-demo.jar org.jfree.chart.demo.SymbolicChartDemo1 On analysis "get...
by Karthicks
Mon Aug 18, 2003 9:42 am
Forum: JFreeChart
Topic: Roadmap...
Replies: 38
Views: 51976

Thread synchronization

Dear David Gilbert, It is ageneral guidelines in swing to update ui components data model in swing thread. Since freechart is a java based ui component bean I think there is no value to the freechart in adding swing thread handling with in the data model or ui component. It is violation of swing gui...
by Karthicks
Mon Aug 18, 2003 6:49 am
Forum: JFreeChart
Topic: Roadmap...
Replies: 38
Views: 51976

Dear David , <b>comment regarding thread synchronization in JFreechart :<b> In Java Design all ui related operations takes place in swing thread. For example in java table design, Table UI access the table model in same swing thread. Similarly table model changes is expected to take place in swing T...