You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
|
Jun
(1) |
Jul
(5) |
Aug
(2) |
Sep
(3) |
Oct
(2) |
Nov
(8) |
Dec
(10) |
2003 |
Jan
(1) |
Feb
(5) |
Mar
(15) |
Apr
(29) |
May
(40) |
Jun
(44) |
Jul
(26) |
Aug
(63) |
Sep
(42) |
Oct
(33) |
Nov
(29) |
Dec
(51) |
2004 |
Jan
(34) |
Feb
(15) |
Mar
(32) |
Apr
(26) |
May
(40) |
Jun
(16) |
Jul
(6) |
Aug
(12) |
Sep
(55) |
Oct
(33) |
Nov
(54) |
Dec
(9) |
2005 |
Jan
(3) |
Feb
(7) |
Mar
(12) |
Apr
(3) |
May
(4) |
Jun
(3) |
Jul
|
Aug
(4) |
Sep
(8) |
Oct
(1) |
Nov
(1) |
Dec
(1) |
2006 |
Jan
(1) |
Feb
(7) |
Mar
(4) |
Apr
(2) |
May
(3) |
Jun
(1) |
Jul
(2) |
Aug
|
Sep
(1) |
Oct
(2) |
Nov
(3) |
Dec
(2) |
2007 |
Jan
(7) |
Feb
(6) |
Mar
|
Apr
|
May
(1) |
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2010 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2012 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <kar...@bt...> - 2004-06-16 16:47:27
|
Hi , I had another query !!!! I am making a Pie chart via a servlet, and wanted to ask if its possible to overlap the labels to the next line . The problem I am having is the Pie chart doesn't display all the labels as they are quite wordy Eg a label could be "sfs004.solutions.vbc.com" Any ideas? Thanks=20 Karan Oberai =20 BT Westside | Apsley | Hemel Hempstead Tel: +44 20 7322 4877 |
From: Nathaniel G. A. <nat...@ya...> - 2004-06-16 12:58:27
|
JSP's are not a good way to generate charts. You should use a Servlet. Sounds like your problem is that there is white space somewhere in your jsp. Any 'white spaces', will be translated into something like: 'out.write( " " );' by the jsp compiler. These can be a major pain in the ass to track down. JSP's, according to the Servlet Specification are not meant to output binary data; they should only be used to output text. --- kar...@bt... wrote: > I get a blank image , similar to one when you have the wrong image > path...... > I have checked the code a few times but cant seem to figure out why.... > Also I am using a BEA weblogic 8 portal server, don't think that should > make any difference though..... > > > > -----Original Message----- > From: jch...@li... > [mailto:jch...@li...] On Behalf Of > Nathaniel G. Auvil > Sent: 15 June 2004 21:38 > To: jch...@li... > Cc: jch...@li... > Subject: Re: [jCharts-developers] 3D pie chart in a JSP > > > > this is not the proper forum for this. Please discuss this in the Users > Forum. > > what is happening? An Exception? > > > > --- kar...@bt... wrote: > > Hi, > > I was trying to create a 3d Pie chart via a JSP but it doesn't seem to > > > work... Any ideas , do you know what I am doing wrong ???? > > > > See code below..... > > > > > > Thanks > > Karan > > > > > > > > > > <%@ page > > import="java.awt.*,org.krysalis.jcharts.*,org.krysalis.jcharts.chartDa > > ta > > ..*, > > > org.krysalis.jcharts.properties.*,org.krysalis.jcharts.types.ChartType,o > > rg.krysalis.jcharts.axisChart.*, > > > org.krysalis.jcharts.test.TestDataGenerator,org.krysalis.jcharts.encoder > > s.JPEGEncoder13, > > > org.krysalis.jcharts.properties.util.ChartFont,org.krysalis.jcharts.enco > > ders.ServletEncoderHelper"%> > > <%@ page import="org.krysalis.jcharts.nonAxisChart.PieChart2D"%> > > <%@ page import="org.krysalis.jcharts.nonAxisChart.PieChart3D"%> > > <% > > try > > { > > int width = 30; > > int height = 50; > > > > PieChart2DProperties properties = new > PieChart2DProperties(); > > LegendProperties legendProperties = new > > LegendProperties(); > > legendProperties.setNumColumns( 2 ); > > legendProperties.setPlacement( LegendProperties.RIGHT ); > > ChartProperties chartProperties = new ChartProperties(); > > > > double[] data= { 81d, 55d, 39d, 20.6d }; > > String[] labels= { "BMW M5", "BMW M3", "Viper GTS-R", > > "Corvette Z06" }; > > Paint[] paints= { Color.lightGray, Color.green, Color.blue, > > Color.red }; > > > > PieChart3DProperties pieChart3DProperties= new > > PieChart3DProperties(); > > PieChartDataSet pieChartDataSet= new PieChartDataSet( "Cars > > That Own", > > data, > > labels, > > paints, > > > > pieChart3DProperties ); > > > > PieChart3D pieChart3D= new PieChart3D( pieChartDataSet, > > new LegendProperties(), > > new ChartProperties(), > > 400, 350 ); > > > > > > //PieChart3D pieChart3D= new PieChart3D( pieChartDataSet,new > > LegendProperties(),new ChartProperties(),400, 350 ); > > ServletEncoderHelper.encodeJPEG13( pieChart3D, 1.0f, response > ); > > } > > catch(Exception e) > > { > > System.out.println(e); > > } > > %> > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference > > Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer > > Conference, June 28 - July 1 at the Moscone Center in San Francisco, > > CA REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code > > NWMGYKND _______________________________________________ > > jCharts-developers mailing list > > jCh...@li... > > https://lists.sourceforge.net/lists/listinfo/jcharts-developers > > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! Mail - Helps protect you from nasty viruses. > http://promotions.yahoo.com/new_mail > > > ------------------------------------------------------- > This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference Learn > from the experts at JavaOne(SM), Sun's Worldwide Java Developer > Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA > REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND > _______________________________________________ > jCharts-developers mailing list jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-developers > > > ------------------------------------------------------- > This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference > Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer > Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA > REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail |
From: <kar...@bt...> - 2004-06-16 09:57:19
|
I get a blank image , similar to one when you have the wrong image path...... I have checked the code a few times but cant seem to figure out why.... Also I am using a BEA weblogic 8 portal server, don't think that should make any difference though..... -----Original Message----- From: jch...@li... [mailto:jch...@li...] On Behalf Of Nathaniel G. Auvil Sent: 15 June 2004 21:38 To: jch...@li... Cc: jch...@li... Subject: Re: [jCharts-developers] 3D pie chart in a JSP this is not the proper forum for this. Please discuss this in the Users Forum. what is happening? An Exception? --- kar...@bt... wrote: > Hi, > I was trying to create a 3d Pie chart via a JSP but it doesn't seem to > work... Any ideas , do you know what I am doing wrong ???? >=20 > See code below..... >=20 >=20 > Thanks > Karan >=20 >=20 >=20 >=20 > <%@ page=20 > = import=3D"java.awt.*,org.krysalis.jcharts.*,org.krysalis.jcharts.chartDa > ta > ..*, > org.krysalis.jcharts.properties.*,org.krysalis.jcharts.types.ChartType,o > rg.krysalis.jcharts.axisChart.*, > org.krysalis.jcharts.test.TestDataGenerator,org.krysalis.jcharts.encoder > s.JPEGEncoder13, > org.krysalis.jcharts.properties.util.ChartFont,org.krysalis.jcharts.enco > ders.ServletEncoderHelper"%> > <%@ page import=3D"org.krysalis.jcharts.nonAxisChart.PieChart2D"%> > <%@ page import=3D"org.krysalis.jcharts.nonAxisChart.PieChart3D"%> > <% > try > { > int width =3D 30; > int height =3D 50; > =09 > PieChart2DProperties properties =3D new PieChart2DProperties(); > LegendProperties legendProperties =3D new > LegendProperties(); > legendProperties.setNumColumns( 2 ); > legendProperties.setPlacement( LegendProperties.RIGHT ); > ChartProperties chartProperties =3D new ChartProperties(); > =20 > double[] data=3D { 81d, 55d, 39d, 20.6d }; > String[] labels=3D { "BMW M5", "BMW M3", "Viper GTS-R",=20 > "Corvette Z06" }; > Paint[] paints=3D { Color.lightGray, Color.green, Color.blue,=20 > Color.red }; >=20 > PieChart3DProperties pieChart3DProperties=3D new=20 > PieChart3DProperties(); > PieChartDataSet pieChartDataSet=3D new PieChartDataSet( "Cars=20 > That Own", > data, > labels, > paints, > =20 > pieChart3DProperties ); >=20 > PieChart3D pieChart3D=3D new PieChart3D( pieChartDataSet, > new LegendProperties(), > new ChartProperties(), > 400, 350 ); >=20 > =20 > //PieChart3D pieChart3D=3D new PieChart3D( pieChartDataSet,new = > LegendProperties(),new ChartProperties(),400, 350 ); > ServletEncoderHelper.encodeJPEG13( pieChart3D, 1.0f, response ); > } > catch(Exception e) > { > System.out.println(e); > } > %> >=20 >=20 >=20 > ------------------------------------------------------- > This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference=20 > Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer=20 > Conference, June 28 - July 1 at the Moscone Center in San Francisco,=20 > CA REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code=20 > NWMGYKND _______________________________________________ > jCharts-developers mailing list=20 > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-developers >=20 =09 __________________________________ Do you Yahoo!? Yahoo! Mail - Helps protect you from nasty viruses. http://promotions.yahoo.com/new_mail ------------------------------------------------------- This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND _______________________________________________ jCharts-developers mailing list jCh...@li... https://lists.sourceforge.net/lists/listinfo/jcharts-developers |
From: Nathaniel G. A. <nat...@ya...> - 2004-06-15 20:37:46
|
this is not the proper forum for this. Please discuss this in the Users Forum. what is happening? An Exception? --- kar...@bt... wrote: > Hi, > I was trying to create a 3d Pie chart via a JSP but it doesn't seem to > work... > Any ideas , do you know what I am doing wrong ???? > > See code below..... > > > Thanks > Karan > > > > > <%@ page > import="java.awt.*,org.krysalis.jcharts.*,org.krysalis.jcharts.chartData > ..*, > org.krysalis.jcharts.properties.*,org.krysalis.jcharts.types.ChartType,o > rg.krysalis.jcharts.axisChart.*, > org.krysalis.jcharts.test.TestDataGenerator,org.krysalis.jcharts.encoder > s.JPEGEncoder13, > org.krysalis.jcharts.properties.util.ChartFont,org.krysalis.jcharts.enco > ders.ServletEncoderHelper"%> > <%@ page import="org.krysalis.jcharts.nonAxisChart.PieChart2D"%> > <%@ page import="org.krysalis.jcharts.nonAxisChart.PieChart3D"%> > <% > try > { > int width = 30; > int height = 50; > > PieChart2DProperties properties = new > PieChart2DProperties(); > LegendProperties legendProperties = new > LegendProperties(); > legendProperties.setNumColumns( 2 ); > legendProperties.setPlacement( LegendProperties.RIGHT ); > ChartProperties chartProperties = new ChartProperties(); > > double[] data= { 81d, 55d, 39d, 20.6d }; > String[] labels= { "BMW M5", "BMW M3", "Viper GTS-R", "Corvette > Z06" }; > Paint[] paints= { Color.lightGray, Color.green, Color.blue, > Color.red }; > > PieChart3DProperties pieChart3DProperties= new > PieChart3DProperties(); > PieChartDataSet pieChartDataSet= new PieChartDataSet( "Cars That > Own", > data, > labels, > paints, > pieChart3DProperties > ); > > PieChart3D pieChart3D= new PieChart3D( pieChartDataSet, > new LegendProperties(), > new ChartProperties(), > 400, 350 ); > > > //PieChart3D pieChart3D= new PieChart3D( pieChartDataSet,new > LegendProperties(),new ChartProperties(),400, 350 ); > ServletEncoderHelper.encodeJPEG13( pieChart3D, 1.0f, response ); > } > catch(Exception e) > { > System.out.println(e); > } > %> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference > Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer > Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA > REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND > _______________________________________________ > jCharts-developers mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-developers > __________________________________ Do you Yahoo!? Yahoo! Mail - Helps protect you from nasty viruses. http://promotions.yahoo.com/new_mail |
From: <dea...@ve...> - 2004-06-09 06:02:00
|
I will be out of the office starting 06/07/2004 and will not return until 06/10/2004. I will be travelling to NYC on business and will not return into the office until 6/10 Thurs. I can be reached via mobile if the matter is urgent, Thank you. |
From: Nathaniel G. A. <nat...@ya...> - 2004-06-08 14:07:30
|
you do not want to include the output of the Servlet in your page as you will get the encoded image. Just use an <img src="myServlet"/> --- Kesavan Srinivasan <kes...@ya...> wrote: > Hi > I have written a servlet that creates the jpeg encoded image. I call this servlet in the > jsp ( that has other html content) usinig <jsp:include..... > It does not show the image, instead I see the garbled data on the page... > Any help would be greatly appreciated. > > thanks > KS. > > > --------------------------------- > Do you Yahoo!? > Friends. Fun. Try the all-new Yahoo! Messenger __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Kesavan S. <kes...@ya...> - 2004-06-08 13:59:17
|
Hi I have written a servlet that creates the jpeg encoded image. I call this servlet in the jsp ( that has other html content) usinig <jsp:include..... It does not show the image, instead I see the garbled data on the page... Any help would be greatly appreciated. thanks KS. --------------------------------- Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger |
From: Nathaniel G. A. <nat...@ya...> - 2004-06-04 12:57:28
|
Value labels are not currently supported in the stacked bar charts; only the bar anc clustered bars. From the User Guide: "It is now possible to display value labels on your Bar and Clustered Bar charts, but not Stacked Bar Charts" Take a look at the org.jCharts.Legend Class. There are several calculations which would need to be updated to deal with user defined icon sizes. These are all due to the sizing and positioning of the Legend. --- doo...@gm... wrote: > Hello! > > I've been using Jcharts for some time now and I think it's pretty easy to > use and creates nice output. Recently I've run into a couple of problems: > > 1) I have created a stacked Barchart but cannot get JCharts to display the > labels. Specifically I'd like to place the labels within the bars - is that > possible? > Here's my code: > > ValueLabelRenderer valueLabelRenderer = new > ValueLabelRenderer(false,true,true, -1 ); > valueLabelRenderer.setValueLabelPosition( ValueLabelPosition.ON_TOP ); > valueLabelRenderer.useVerticalLabels( false ); > stackedBarChartProperties.addPostRenderEventListener( valueLabelRenderer ); > > > > 2) Is there a way to change the size of legend icons - these little boxes > which are positioned right in front of the label? If not, could anyone > please give me a hint as to where to find it in the source? > > Thanks in advance, > > Katrin > > -- > "Sie haben neue Mails!" - Die GMX Toolbar informiert Sie beim Surfen! > Jetzt aktivieren unter http://www.gmx.net/info > > > > ------------------------------------------------------- > This SF.Net email is sponsored by the new InstallShield X. > From Windows to Linux, servers to mobile, InstallShield X is the one > installation-authoring solution that does it all. Learn more and > evaluate today! http://www.installshield.com/Dev2Dev/0504 > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ |
From: <doo...@gm...> - 2004-06-04 10:35:38
|
Hello! I've been using Jcharts for some time now and I think it's pretty easy to use and creates nice output. Recently I've run into a couple of problems: 1) I have created a stacked Barchart but cannot get JCharts to display the labels. Specifically I'd like to place the labels within the bars - is that possible? Here's my code: ValueLabelRenderer valueLabelRenderer = new ValueLabelRenderer(false,true,true, -1 ); valueLabelRenderer.setValueLabelPosition( ValueLabelPosition.ON_TOP ); valueLabelRenderer.useVerticalLabels( false ); stackedBarChartProperties.addPostRenderEventListener( valueLabelRenderer ); 2) Is there a way to change the size of legend icons - these little boxes which are positioned right in front of the label? If not, could anyone please give me a hint as to where to find it in the source? Thanks in advance, Katrin -- "Sie haben neue Mails!" - Die GMX Toolbar informiert Sie beim Surfen! Jetzt aktivieren unter http://www.gmx.net/info |
From: Buchanan, P. (T. Corp) <Pau...@th...> - 2004-06-01 12:28:26
|
Nathan, Those of use who are using IBM's Websphere will still be at jdk 1.3.x = for awhile. I haven't heard when 1.4 will be integrated into Websphere. Thanks, Paul >Message: 2 >Date: Mon, 31 May 2004 06:57:55 -0700 (PDT) >From: "Nathaniel G. Auvil" <nat...@ya...> >To: jCharts - Users <jch...@li...> >Cc: Developers jCharts <jch...@li...> >Subject: [jCharts-users] jdk 1.3.x support >Reply-To: jch...@li... > > >Anyone out there still using jdk 1.3.x? |
From: Nathaniel G. A. <nat...@ya...> - 2004-05-31 20:15:37
|
krysalis-jcharts 1.0.0 alpha 1 is now available for download. You will have to adjust the package naming of the classes which are now: org.krysalis.jcharts.* Remember, this is an Alpha release, meaning things are still going to be added and possible changed before the 'final' 1.0.0. While the code passes all the visual tests, there may be some bugs lingering about. Don't let this scare you though...Have a go at her! For a list of the changes: http://jcharts.krysalis.org/changes.html __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ |
From: Nathaniel G. A. <nat...@ya...> - 2004-05-31 13:58:02
|
Anyone out there still using jdk 1.3.x? __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ |
From: Nathaniel G. A. <nat...@ya...> - 2004-05-31 13:05:52
|
ok. I will go through the source and make sure everything is Serializable. --- Teodor Danciu <te...@us...> wrote: > > Hello, > > In an attempt to serialize a org.jCharts.axisChart.AxisChart object > I received this exception: > > java.io.NotSerializableException: org.jCharts.properties.util.ChartFont > > I need to serialize charts (the *org.jCharts.Chart* class implements > java.io.Serializable) > in order to improve the quality of charts in the JasperReports library. > If everything goes as planned, I'll provide you with a new improved > version of the JasperReports and jCharts integration sample. > > Thank you, > Teodor > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: Oracle 10g > Get certified on the hottest thing ever to hit the market... Oracle 10g. > Take an Oracle 10g class now, and we'll give you the exam FREE. > http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ |
From: Teodor D. <te...@us...> - 2004-05-30 21:45:51
|
Hello, In an attempt to serialize a org.jCharts.axisChart.AxisChart object I received this exception: java.io.NotSerializableException: org.jCharts.properties.util.ChartFont I need to serialize charts (the *org.jCharts.Chart* class implements java.io.Serializable) in order to improve the quality of charts in the JasperReports library. If everything goes as planned, I'll provide you with a new improved version of the JasperReports and jCharts integration sample. Thank you, Teodor |
From: Nathaniel G. A. <nat...@ya...> - 2004-05-26 12:55:38
|
i checked in some changes for this under the krysalis-jcharts module. I still need to do some testing for user defined scales that do not show zero on the y-axis. --- Travis Reeder <tra...@ec...> wrote: > Probably easiest if you do it, but I looked and I think it's here in > verticalPlot(): > > if( rectangle.height != 0 ) > { > g2d.fill( rectangle ); > > if( barChartProperties.getShowOutlinesFlag() ) > { > barChartProperties.getBarOutlineStroke().draw( > g2d, rectangle ); > g2d.setPaint( iAxisChartDataSet.getPaint( 0 ) ); > } > > //---if we are generating an ImageMap, store the > image coordinates > if( axisChart.getGenerateImageMapFlag() ) > { > String label; > if( axisChart.getXAxis().getAxisLabelsGroup() != > null ) > { > label = > axisChart.getXAxis().getAxisLabelsGroup().getTextTag( i ).getText(); > } > else > { > label = null; > } > > * axisChart.getImageMap().addImageMapArea( new > RectMapArea( rectangle, > > iAxisChartDataSet.getValue( 0, i ), > > label, > > iAxisChartDataSet.getLegendLabel( 0 ) ) );* > } > } > > Should move that addImageMapArea out of the: if( rectangle.height != 0 > ) { block so it adds regardless. > > Travis > > Nathaniel G. Auvil wrote: > > >oh i see...that is not good. Nothing gets added to that List when the value is zero. I will try > to > >look at this tonight. The only file which needs a fix for you is BarChart.java if you want to > >look at it before I can do it. > > > > > > > >--- Travis Reeder <tra...@ec...> wrote: > > > > > >>Well nothing, it's not really that it needs to be clicked on, but the > >>iterator no longer matches the graph. It would be nice to have it at > >>least return something and you could check the imageMapArea.getValue or > >>something to know whether to output that portion of the map html or some > >>way at least to know that it skipped a column. > >>ex: > >> > >>ImageMapArea imageMapArea= (ImageMapArea) iterator.next(); > >> if(imageMapArea.getValue() > 0){ > >> ... do the rest here > >> imageMapArea.toHTML().... > >> } > >> > >> > >>Maybe your idea of clicking on the x-axis is a perfect idea, then you don't even have to check > >>and it would be backwards compatible. > >> > >>Travis > >> > >> > >>Nathaniel G. Auvil wrote: > >> > >> > >> > >>>what would you click on if there is nothing drawn? The axis? > >>> > >>> > >>>--- Travis Reeder <tra...@ec...> wrote: > >>> > >>> > >>> > >>> > >>>>If a bar is 0 value, then it seems like no ImageMapArea is is returned > >>>>for that bar. This is problematic when the bars link to dynamic values > >>>>for example: > >>>> > >>>>ImageMapArea imageMapArea= (ImageMapArea) iterator.next(); > >>>> html.append( "href=\"processList.jsf?status=" ); > >>>> html.append( matchingStatusCodes[mapCount] ); > >>>> html.append( "\"" ); > >>>> > >>>> > >>>>Any ideas to get around that? > >>>> > >>>>Travis > >>>> > >>>> > >>>> > >>>> > >>>> > >>>> > >>> > >>> > >>> > >>>__________________________________ > >>>Do you Yahoo!? > >>>Friends. Fun. Try the all-new Yahoo! Messenger. > >>>http://messenger.yahoo.com/ > >>> > >>> > >>>------------------------------------------------------- > >>>This SF.Net email is sponsored by: Oracle 10g > >>>Get certified on the hottest thing ever to hit the market... Oracle 10g. > >>>Take an Oracle 10g class now, and we'll give you the exam FREE. > >>>http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click > >>>_______________________________________________ > >>>jCharts-users mailing list > >>>jCh...@li... > >>>https://lists.sourceforge.net/lists/listinfo/jcharts-users > >>> > >>>. > >>> > >>> > >>> > >>> > >>> > > > > > > > > > > > >__________________________________ > >Do you Yahoo!? > >Friends. Fun. Try the all-new Yahoo! Messenger. > >http://messenger.yahoo.com/ > > > > > >------------------------------------------------------- > >This SF.Net email is sponsored by: Oracle 10g > >Get certified on the hottest thing ever to hit the market... Oracle 10g. > >Take an Oracle 10g class now, and we'll give you the exam FREE. > >http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click > >_______________________________________________ > >jCharts-users mailing list > >jCh...@li... > >https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > >. > > > > > > > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2004-05-25 20:22:13
|
lol. I am with you. I posted it on the developers list. I see no reason why commit access will not be granted. --- Travis Reeder <tra...@ec...> wrote: > Lets get this vote in happening, I'd love to start using these new features. > > Travis > > > Nicola Ken Barozzi wrote: > > > Chris McKay wrote: > > ... > > > >> And possibly some other things that have slipped my mine. The charts > >> have been in production for about six months now, getting a good work > >> out with a fairly large set of datasets. > > > > > > Very nice! :-) > > > >> I think what I'll do is run some CVS diffs on the current 1.0 CVS tree > >> and then submit them to the patches directory. Then if there is time and > >> Nathaniel is cool about it I can commit to the 1.0 tree. > > > > > > jCharts is part of Krsyalis, and thus should adhere to its rules, > > which are similar to the ones used at Apache: > > > > http://www.krysalis.org/constitution.html > > > > Because of this, new members have to be voted in by existing committers. > > > > In any case, if you are willing to become a committer, I think we > > would all be happy to vote you in :-) > > > __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ |
From: Travis R. <tra...@ec...> - 2004-05-25 19:55:58
|
Lets get this vote in happening, I'd love to start using these new features. Travis Nicola Ken Barozzi wrote: > Chris McKay wrote: > ... > >> And possibly some other things that have slipped my mine. The charts >> have been in production for about six months now, getting a good work >> out with a fairly large set of datasets. > > > Very nice! :-) > >> I think what I'll do is run some CVS diffs on the current 1.0 CVS tree >> and then submit them to the patches directory. Then if there is time and >> Nathaniel is cool about it I can commit to the 1.0 tree. > > > jCharts is part of Krsyalis, and thus should adhere to its rules, > which are similar to the ones used at Apache: > > http://www.krysalis.org/constitution.html > > Because of this, new members have to be voted in by existing committers. > > In any case, if you are willing to become a committer, I think we > would all be happy to vote you in :-) > |
From: Travis R. <tra...@ec...> - 2004-05-25 19:54:32
|
Probably easiest if you do it, but I looked and I think it's here in verticalPlot(): if( rectangle.height != 0 ) { g2d.fill( rectangle ); if( barChartProperties.getShowOutlinesFlag() ) { barChartProperties.getBarOutlineStroke().draw( g2d, rectangle ); g2d.setPaint( iAxisChartDataSet.getPaint( 0 ) ); } //---if we are generating an ImageMap, store the image coordinates if( axisChart.getGenerateImageMapFlag() ) { String label; if( axisChart.getXAxis().getAxisLabelsGroup() != null ) { label = axisChart.getXAxis().getAxisLabelsGroup().getTextTag( i ).getText(); } else { label = null; } * axisChart.getImageMap().addImageMapArea( new RectMapArea( rectangle, iAxisChartDataSet.getValue( 0, i ), label, iAxisChartDataSet.getLegendLabel( 0 ) ) );* } } Should move that addImageMapArea out of the: if( rectangle.height != 0 ) { block so it adds regardless. Travis Nathaniel G. Auvil wrote: >oh i see...that is not good. Nothing gets added to that List when the value is zero. I will try to >look at this tonight. The only file which needs a fix for you is BarChart.java if you want to >look at it before I can do it. > > > >--- Travis Reeder <tra...@ec...> wrote: > > >>Well nothing, it's not really that it needs to be clicked on, but the >>iterator no longer matches the graph. It would be nice to have it at >>least return something and you could check the imageMapArea.getValue or >>something to know whether to output that portion of the map html or some >>way at least to know that it skipped a column. >>ex: >> >>ImageMapArea imageMapArea= (ImageMapArea) iterator.next(); >> if(imageMapArea.getValue() > 0){ >> ... do the rest here >> imageMapArea.toHTML().... >> } >> >> >>Maybe your idea of clicking on the x-axis is a perfect idea, then you don't even have to check >>and it would be backwards compatible. >> >>Travis >> >> >>Nathaniel G. Auvil wrote: >> >> >> >>>what would you click on if there is nothing drawn? The axis? >>> >>> >>>--- Travis Reeder <tra...@ec...> wrote: >>> >>> >>> >>> >>>>If a bar is 0 value, then it seems like no ImageMapArea is is returned >>>>for that bar. This is problematic when the bars link to dynamic values >>>>for example: >>>> >>>>ImageMapArea imageMapArea= (ImageMapArea) iterator.next(); >>>> html.append( "href=\"processList.jsf?status=" ); >>>> html.append( matchingStatusCodes[mapCount] ); >>>> html.append( "\"" ); >>>> >>>> >>>>Any ideas to get around that? >>>> >>>>Travis >>>> >>>> >>>> >>>> >>>> >>>> >>> >>> >>> >>>__________________________________ >>>Do you Yahoo!? >>>Friends. Fun. Try the all-new Yahoo! Messenger. >>>http://messenger.yahoo.com/ >>> >>> >>>------------------------------------------------------- >>>This SF.Net email is sponsored by: Oracle 10g >>>Get certified on the hottest thing ever to hit the market... Oracle 10g. >>>Take an Oracle 10g class now, and we'll give you the exam FREE. >>>http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click >>>_______________________________________________ >>>jCharts-users mailing list >>>jCh...@li... >>>https://lists.sourceforge.net/lists/listinfo/jcharts-users >>> >>>. >>> >>> >>> >>> >>> > > > > > >__________________________________ >Do you Yahoo!? >Friends. Fun. Try the all-new Yahoo! Messenger. >http://messenger.yahoo.com/ > > >------------------------------------------------------- >This SF.Net email is sponsored by: Oracle 10g >Get certified on the hottest thing ever to hit the market... Oracle 10g. >Take an Oracle 10g class now, and we'll give you the exam FREE. >http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click >_______________________________________________ >jCharts-users mailing list >jCh...@li... >https://lists.sourceforge.net/lists/listinfo/jcharts-users > >. > > > |
From: Nathaniel G. A. <nat...@ya...> - 2004-05-25 17:00:06
|
oh i see...that is not good. Nothing gets added to that List when the value is zero. I will try to look at this tonight. The only file which needs a fix for you is BarChart.java if you want to look at it before I can do it. --- Travis Reeder <tra...@ec...> wrote: > Well nothing, it's not really that it needs to be clicked on, but the > iterator no longer matches the graph. It would be nice to have it at > least return something and you could check the imageMapArea.getValue or > something to know whether to output that portion of the map html or some > way at least to know that it skipped a column. > ex: > > ImageMapArea imageMapArea= (ImageMapArea) iterator.next(); > if(imageMapArea.getValue() > 0){ > ... do the rest here > imageMapArea.toHTML().... > } > > > Maybe your idea of clicking on the x-axis is a perfect idea, then you don't even have to check > and it would be backwards compatible. > > Travis > > > Nathaniel G. Auvil wrote: > > >what would you click on if there is nothing drawn? The axis? > > > > > >--- Travis Reeder <tra...@ec...> wrote: > > > > > >>If a bar is 0 value, then it seems like no ImageMapArea is is returned > >>for that bar. This is problematic when the bars link to dynamic values > >>for example: > >> > >> ImageMapArea imageMapArea= (ImageMapArea) iterator.next(); > >> html.append( "href=\"processList.jsf?status=" ); > >> html.append( matchingStatusCodes[mapCount] ); > >> html.append( "\"" ); > >> > >> > >>Any ideas to get around that? > >> > >>Travis > >> > >> > >> > >> > > > > > > > > > > > >__________________________________ > >Do you Yahoo!? > >Friends. Fun. Try the all-new Yahoo! Messenger. > >http://messenger.yahoo.com/ > > > > > >------------------------------------------------------- > >This SF.Net email is sponsored by: Oracle 10g > >Get certified on the hottest thing ever to hit the market... Oracle 10g. > >Take an Oracle 10g class now, and we'll give you the exam FREE. > >http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click > >_______________________________________________ > >jCharts-users mailing list > >jCh...@li... > >https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > >. > > > > > > > __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ |
From: Travis R. <tra...@ec...> - 2004-05-25 16:37:47
|
Well nothing, it's not really that it needs to be clicked on, but the iterator no longer matches the graph. It would be nice to have it at least return something and you could check the imageMapArea.getValue or something to know whether to output that portion of the map html or some way at least to know that it skipped a column. ex: ImageMapArea imageMapArea= (ImageMapArea) iterator.next(); if(imageMapArea.getValue() > 0){ ... do the rest here imageMapArea.toHTML().... } Maybe your idea of clicking on the x-axis is a perfect idea, then you don't even have to check and it would be backwards compatible. Travis Nathaniel G. Auvil wrote: >what would you click on if there is nothing drawn? The axis? > > >--- Travis Reeder <tra...@ec...> wrote: > > >>If a bar is 0 value, then it seems like no ImageMapArea is is returned >>for that bar. This is problematic when the bars link to dynamic values >>for example: >> >> ImageMapArea imageMapArea= (ImageMapArea) iterator.next(); >> html.append( "href=\"processList.jsf?status=" ); >> html.append( matchingStatusCodes[mapCount] ); >> html.append( "\"" ); >> >> >>Any ideas to get around that? >> >>Travis >> >> >> >> > > > > > >__________________________________ >Do you Yahoo!? >Friends. Fun. Try the all-new Yahoo! Messenger. >http://messenger.yahoo.com/ > > >------------------------------------------------------- >This SF.Net email is sponsored by: Oracle 10g >Get certified on the hottest thing ever to hit the market... Oracle 10g. >Take an Oracle 10g class now, and we'll give you the exam FREE. >http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click >_______________________________________________ >jCharts-users mailing list >jCh...@li... >https://lists.sourceforge.net/lists/listinfo/jcharts-users > >. > > > |
From: Nathaniel G. A. <nat...@ya...> - 2004-05-25 16:19:20
|
what would you click on if there is nothing drawn? The axis? --- Travis Reeder <tra...@ec...> wrote: > If a bar is 0 value, then it seems like no ImageMapArea is is returned > for that bar. This is problematic when the bars link to dynamic values > for example: > > ImageMapArea imageMapArea= (ImageMapArea) iterator.next(); > html.append( "href=\"processList.jsf?status=" ); > html.append( matchingStatusCodes[mapCount] ); > html.append( "\"" ); > > > Any ideas to get around that? > > Travis > > __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ |
From: Travis R. <tra...@ec...> - 2004-05-25 16:11:23
|
If a bar is 0 value, then it seems like no ImageMapArea is is returned for that bar. This is problematic when the bars link to dynamic values for example: ImageMapArea imageMapArea= (ImageMapArea) iterator.next(); html.append( "href=\"processList.jsf?status=" ); html.append( matchingStatusCodes[mapCount] ); html.append( "\"" ); Any ideas to get around that? Travis |
From: Nathaniel G. A. <nat...@ya...> - 2004-05-24 15:52:54
|
I think you should override the "update( Graphics )" method so that it does not clear the Components background when the window is resized. --- se...@at... wrote: > hi, > i have the following problem : > i override paint method for painting chart when resize window... at this > time, the screen is flickering.. it looks like painting the screen twice.. > thanks.. > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: Oracle 10g > Get certified on the hottest thing ever to hit the market... Oracle 10g. > Take an Oracle 10g class now, and we'll give you the exam FREE. > http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users __________________________________ Do you Yahoo!? Yahoo! Domains Claim yours for only $14.70/year http://smallbusiness.promotions.yahoo.com/offer |
From: <se...@at...> - 2004-05-24 15:17:21
|
hi, i have the following problem : i override paint method for painting chart when resize window... at this time, the screen is flickering.. it looks like painting the screen twice.. thanks.. |
From: Nathaniel G. A. <nat...@ya...> - 2004-05-24 13:07:17
|
There are a couple of examples in the src. Take a look at: BackgroundRenderer, ValueLabelRenderer, etc... --- Lora Lantzy <Lor...@sa...> wrote: > Does anyone have an example of the AxisValueRenderEvent that they would be willing to share? I > am trying to understand how it should be used. > > Thank you, > Lora Lantzy > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: Oracle 10g > Get certified on the hottest thing ever to hit the market... Oracle 10g. > Take an Oracle 10g class now, and we'll give you the exam FREE. > http://ads.osdn.com/?ad_id149&alloc_id66&op=click > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users __________________________________ Do you Yahoo!? Yahoo! Domains Claim yours for only $14.70/year http://smallbusiness.promotions.yahoo.com/offer |