Search found 7 matches

by kasineedis
Wed Aug 25, 2010 3:38 pm
Forum: JFreeChart
Topic: Custom CategoryAxis Labels
Replies: 3
Views: 7738

Tick labels as HyperLinks on Symbol Axis

All, My requirment is to create HyperLink on Symbol Axis Tick lables on Y-aix(Ex p1,p2,p3 ...etc).When you click on that hyper link I have to show another window in which I have to show some data by connecting to database.Could you pleaseGuide me or any body in forum. 1)How to make Symbol axis Tick ...
by kasineedis
Wed Aug 25, 2010 3:17 pm
Forum: JFreeChart
Topic: Barchart Tooltip and URL
Replies: 6
Views: 16921

Re: Barchart Tooltip and URL

Hi Raj , My requirment is to create HyperLink on Symbol Axis Tick lables on Y-aix(Ex p1,p2,p3 ...etc).When you click on that hyper link I have to show another window in which I have to show some data by connecting to database.Could you pleaseGuide me or any body in forum. 1)How to make Symbol axis T...
by kasineedis
Thu May 14, 2009 3:10 pm
Forum: JFreeChart
Topic: DateAxis tick labels
Replies: 8
Views: 15370

Re: DateAxis tick labels

Convert Time in to milliseconds by using org.jfree.date.DateUtilities.set lower and Upper margin according to your Plot Dimention .In this case 0.02 equals 2 % of axis length .You can take any date ,i took 2006,November 1st. double lower = DateUtilities.createDate(2006, 11, 1,getHour("00:00"),getMin...
by kasineedis
Wed May 13, 2009 6:01 pm
Forum: JFreeChart
Topic: Align center of Bar rendered by XYBarRenderer with the grid
Replies: 3
Views: 7577

Re: Align center of Bar rendered by XYBarRenderer with the grid

HI , I have similler problem .My requrment is The Girid line of Symbol axis(Y-axis) should pass center of the Stacked bar that is rendered by XYBarRenderer .Right now it is passing at the bottem of the stacked bar .If you run the following demo one can understand what the problelm is .....Can any bo...
by kasineedis
Tue May 05, 2009 8:11 pm
Forum: JFreeChart
Topic: Spacing issues on SymbolAxis
Replies: 3
Views: 6599

Re: Spacing issues on SymbolAxis

Please check the image that attached .I have Similer problem in SymbolAxis Spacing . The tick labels are not exactly positioned. I had Date axis as domain axis .and SymbolAxis as rangeAxis . In Image which is attached The Time Blocks that are correspond to S1Series are above the S1 grid line . and t...
by kasineedis
Thu Apr 30, 2009 3:17 pm
Forum: JFreeChart
Topic: DateAxis tick labels
Replies: 8
Views: 15370

Re: DateAxis tick labels

I added the following code .It worked .Thank you very much


domainAxis.setAutoTickUnitSelection(true);
plot.getDomainAxis().setLowerMargin(0.02);
plot.getDomainAxis().setUpperMargin(0.000);
domainAxis.setUpperBound(upper);
domainAxis.setLowerBound(lower);
by kasineedis
Mon Apr 27, 2009 7:44 pm
Forum: JFreeChart
Topic: DateAxis tick labels
Replies: 8
Views: 15370

DateAxis tick labels

Hi I am using jfreechart 1.0.12, and I have a chart with TimeSeries data. I am setting plot.getDomainAxis().setLowerBound(start); plot.getDomainAxis().setUpperBound(end); where start is exactly 00:00 and stop is 23:59 tick labels are 00:11 01:11 02:11 03:11 04:11 05:11 06:11 07:11............23:11 I...