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: Nathaniel G. A. <nat...@ya...> - 2003-07-31 18:53:01
|
--- Daniel Hopkins <Dan...@di...> wrote: > Being a newbie to the JCharts, I am having difficulty getting a graph to correctly display > multiple lines of data, and have not been able to find an example that does this. > > I see http://jcharts.sourceforge.net/samples/line.html shows a sample, but no code is provided. > > I have played/modifed the code from ComboChartServlet example, where I simplied added another > data series, but this too fail, unless the second data series is configured to render using > ChartType.BAR > > The modified service method is shown below... > > If I modify the one of the lines: > > dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, legendLabels, paints, > ChartType.LINE, this.lineChartProperties ) ); > > to > > dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, legendLabels, paints, ChartType.BAR, > this.barChartProperties ) ); > > it will render this series correctly as a bar chart, and the other as a line chart. But I > cannot get them both to render as lines..what gives? > > I must be missing something....any suggestions would be greatly appreciated All your line data should be in the same IAxisChartDataSet; it takes a double[][] for the data values. Each IAxisPlotDataSet in the DataSeries Object represents a specific kind of chart. ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Daniel H. <Dan...@di...> - 2003-07-31 18:40:29
|
Being a newbie to the JCharts, I am having difficulty getting a graph to = correctly display multiple lines of data, and have not been able to find = an example that does this. I see http://jcharts.sourceforge.net/samples/line.html shows a sample, = but no code is provided. I have played/modifed the code from ComboChartServlet example, where I = simplied added another data series, but this too fail, unless the second = data series is configured to render using ChartType.BAR The modified service method is shown below... If I modify the one of the lines: dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, = legendLabels, paints, ChartType.LINE, this.lineChartProperties ) ); to dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, = legendLabels, paints, ChartType.BAR, this.barChartProperties ) ); it will render this series correctly as a bar chart, and the other as a = line chart. But I cannot get them both to render as lines..what gives? I must be missing something....any suggestions would be greatly = appreciated --- service() method in question ---- public void service( HttpServletRequest req, HttpServletResponse = httpServletResponse ) throws ServletException, IOException { try { String[] xAxisLabels =3D {"1995", "1996", "1997", "1998", "1999", = "2000", "2001", "2002", "2003", "2004"}; String xAxisTitle =3D "Years"; String yAxisTitle =3D "Problems"; String title =3D "Micro$oft At Work"; IAxisDataSeries dataSeries =3D new DataSeries( xAxisLabels, = xAxisTitle, yAxisTitle, title ); double[][] data =3D new double[][]{{1500, 6880, 4510, 2600, 1200, = 1580, 8000, 4555, 4000, 6120}}; double[][] data2 =3D new double[][]{{2500, 7880, 5510, 8600, 2200, = 2580, 9000, 5555, 3000, 1120}}; String[] legendLabels =3D {"Bugs"}; String[] legendLabels2 =3D {"tests"}; Paint[] paints =3D new Paint[]{Color.blue.darker()}; Paint[] linePaints =3D new Paint[]{Color.green}; dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, = legendLabels, paints, ChartType.LINE, this.lineChartProperties ) ); dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data2, = legendLabels2, linePaints, ChartType.LINE, this.lineChartProperties ) ); //dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, = legendLabels, linePaints, ChartType.LINE, this.lineChartProperties ) ); AxisChart axisChart =3D new AxisChart( dataSeries, = this.chartProperties, this.axisProperties, this.legendProperties, = this.width, this.height ); ServletEncoderHelper.encodeJPEG13( axisChart, 1.0f, = httpServletResponse ); } catch( Throwable throwable ) { //HACK do your error handling here... throwable.printStackTrace(); } } ----- full servlet code below ----- /************************************************************************= *********************** * File Info: $Id: ComboChartServlet.java,v 1.3 2003/03/14 03:23:23 = nathaniel_auvil Exp $ * Copyright (C) 2000 * Author: Nathaniel G. Auvil * Contributor(s): * * Copyright 2002 (C) Nathaniel G. Auvil. All Rights Reserved. * * Redistribution and use of this software and associated documentation * ("Software"), with or without modification, are permitted provided * that the following conditions are met: * * 1. Redistributions of source code must retain copyright * statements and notices. Redistributions must also contain a * copy of this document. * * 2. Redistributions in binary form must reproduce the * above copyright notice, this list of conditions and the * following disclaimer in the documentation and/or other * materials provided with the distribution. * * 3. The name "jCharts" or "Nathaniel G. Auvil" must not be used to * endorse or promote products derived from this Software without * prior written permission of Nathaniel G. Auvil. For written * permission, please contact nat...@us... * * 4. Products derived from this Software may not be called "jCharts" * nor may "jCharts" appear in their names without prior written * permission of Nathaniel G. Auvil. jCharts is a registered * trademark of Nathaniel G. Auvil. * * 5. Due credit should be given to the jCharts Project * (http://jcharts.sourceforge.net/). * * THIS SOFTWARE IS PROVIDED BY Nathaniel G. Auvil AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * jCharts OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. = *************************************************************************= ***********************/ package org.jCharts.demo.simpleServlet; import org.jCharts.axisChart.AxisChart; import org.jCharts.chartData.AxisChartDataSet; import org.jCharts.chartData.DataSeries; import org.jCharts.chartData.interfaces.IAxisDataSeries; import org.jCharts.encoders.ServletEncoderHelper; import org.jCharts.properties.*; import org.jCharts.properties.util.ChartFont; import org.jCharts.types.ChartType; import javax.servlet.ServletException; import javax.servlet.http.*; import java.awt.*; import java.io.IOException; public class ComboChartServlet extends HttpServlet { //---all of my charts serviced by this Servlet will have the same = properties. private LineChartProperties lineChartProperties; //---all of my charts serviced by this Servlet will have the same = properties. private BarChartProperties barChartProperties; //---all of my charts serviced by this Servlet will have the same = properties. protected LegendProperties legendProperties; protected AxisProperties axisProperties; protected ChartProperties chartProperties; protected int width =3D 550; protected int height =3D 360; = /************************************************************************= ********************** * = *************************************************************************= *********************/ public void init() { this.legendProperties =3D new LegendProperties(); this.chartProperties =3D new ChartProperties(); this.axisProperties =3D new AxisProperties( false ); ChartFont axisScaleFont =3D new ChartFont( new Font( "Georgia Negreta = cursiva", Font.PLAIN, 13 ), Color.black ); axisProperties.getXAxisProperties().setScaleChartFont( axisScaleFont = ); axisProperties.getYAxisProperties().setScaleChartFont( axisScaleFont = ); ChartFont axisTitleFont =3D new ChartFont( new Font( "Arial Narrow", = Font.PLAIN, 14 ), Color.black ); axisProperties.getXAxisProperties().setTitleChartFont( axisTitleFont = ); axisProperties.getYAxisProperties().setTitleChartFont( axisTitleFont = ); ChartFont titleFont =3D new ChartFont( new Font( "Georgia Negreta = cursiva", Font.PLAIN, 14 ), Color.black ); this.chartProperties.setTitleFont( titleFont ); Stroke[] strokes =3D {LineChartProperties.DEFAULT_LINE_STROKE}; Shape[] shapes =3D {PointChartProperties.SHAPE_DIAMOND}; this.lineChartProperties =3D new LineChartProperties( strokes, shapes = ); this.barChartProperties =3D new BarChartProperties(); } = /************************************************************************= ********************** * = *************************************************************************= *********************/ public void service( HttpServletRequest req, HttpServletResponse = httpServletResponse ) throws ServletException, IOException { try { String[] xAxisLabels =3D {"1995", "1996", "1997", "1998", "1999", = "2000", "2001", "2002", "2003", "2004"}; String xAxisTitle =3D "Years"; String yAxisTitle =3D "Problems"; String title =3D "Micro$oft At Work"; IAxisDataSeries dataSeries =3D new DataSeries( xAxisLabels, = xAxisTitle, yAxisTitle, title ); double[][] data =3D new double[][]{{1500, 6880, 4510, 2600, 1200, = 1580, 8000, 4555, 4000, 6120}}; double[][] data2 =3D new double[][]{{2500, 7880, 5510, 8600, 2200, = 2580, 9000, 5555, 3000, 1120}}; String[] legendLabels =3D {"Bugs"}; String[] legendLabels2 =3D {"tests"}; Paint[] paints =3D new Paint[]{Color.blue.darker()}; Paint[] linePaints =3D new Paint[]{Color.green}; dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, = legendLabels, paints, ChartType.LINE, this.lineChartProperties ) ); // dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, = legendLabels, paints, ChartType.BAR, this.barChartProperties ) ); dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data2, = legendLabels2, linePaints, ChartType.LINE, this.lineChartProperties ) ); AxisChart axisChart =3D new AxisChart( dataSeries, = this.chartProperties, this.axisProperties, this.legendProperties, = this.width, this.height ); ServletEncoderHelper.encodeJPEG13( axisChart, 1.0f, = httpServletResponse ); } catch( Throwable throwable ) { //HACK do your error handling here... throwable.printStackTrace(); } } } |
From: Nathaniel G. A. <nat...@ya...> - 2003-07-29 13:07:05
|
> 1. Email Notification and Reports via email. This is not built into jCharts as jCharts is not a reporting or notification system. You could use jCharts in a report and send email via the JavaMail API. > 2. Preview Report support Again, jCharts is not a reporting package. Take a look at JasperReports for a robust reporting java based reporting package. We have a download on our site which shows how to integrate the two. > 3. Visual Designer support. This is not available right now, although I have started work on this a while back. > 4. Template Definitions We do not load properties via files, although you could do this. Then create a static instance of the Properties Object and use the same instance in all of your charts. > 5. Is Jchart supported on platforms (Windows, Solaris,IBM AIX, Linux). anywhere Java runs > 6. Minimum JDK requirements for jChart 1.2+ > 7. Application servers supported by J chart. any server that supports the jdk 1.2+ > > Thanks and Regards > Gandhi,Raketla > Software Engineer > Digital Enterprise Solutions > Honeywell > > Honeywell Technology Solutions Lab > > 151/1 Doraisanipalya, Bannerghatta Road, > > Bangalore 560 076, INDIA > > Phone: ++91-80-6585751(Extn :3120) > > Fax : ++91-80-6584750 > mobile : +91-80-31815880 > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raketla, G. (IE10) <Rak...@ho...> - 2003-07-29 11:02:31
|
Thanks you very much for your information. Thanks and Regards Gandhi,Raketla Software Engineer Digital Enterprise Solutions Honeywell > Honeywell Technology Solutions Lab > 151/1 Doraisanipalya, Bannerghatta Road, > Bangalore 560 076, INDIA > Phone: ++91-80-6585751(Extn :3120) > Fax : ++91-80-6584750 mobile : +91-80-31815880 > -----Original Message----- > From: Vikram Rajan [SMTP:Vi...@PL...] > Sent: Tuesday, July 29, 2003 4:11 PM > To: 'jch...@li...' > Subject: RE: [jCharts-users] Jchart Features > > hi Raketla, > > jCharts requires atleast JDK 1.3.1 and JDK 1.4. > Hence jCharts can be used on all platforms that have these JDKs' support. > It > runs well on all the platforms you have mentioned. > jCharts can be made to run on pretty much most application servers. > > jCharts does not have the first 4 features that you have mentioned. > > regards, > > Vikram Rajan > Senior Member Technical Staff, > Planetasia Ltd > > > -----Original Message----- > From: Raketla, Gandhi (IE10) [mailto:Rak...@ho...] > Sent: Tuesday, July 29, 2003 3:33 PM > To: jch...@li... > Subject: [jCharts-users] Jchart Features > > > Hello All, > I need information about, if the j chart provides following features. > > 1. Email Notification and Reports via email. > 2. Preview Report support. > 3. Visual Designer support. > 4. Template Definitions. > 5. Is Jchart supported on platforms (Windows, Solaris,IBM AIX, Linux). > 6. Minimum JDK requirements for jChart > 7. Application servers supported by J chart. > > Thanks and Regards > Gandhi,Raketla > Software Engineer > Digital Enterprise Solutions > Honeywell > > Honeywell Technology Solutions Lab > > 151/1 Doraisanipalya, Bannerghatta Road, > > Bangalore 560 076, INDIA > > Phone: ++91-80-6585751(Extn :3120) > > Fax : ++91-80-6584750 > mobile : +91-80-31815880 > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/0 > 1 > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/0 > 1 > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users |
From: Vikram R. <Vi...@PL...> - 2003-07-29 10:31:36
|
hi Raketla, jCharts requires atleast JDK 1.3.1 and JDK 1.4. Hence jCharts can be used on all platforms that have these JDKs' support. It runs well on all the platforms you have mentioned. jCharts can be made to run on pretty much most application servers. jCharts does not have the first 4 features that you have mentioned. regards, Vikram Rajan Senior Member Technical Staff, Planetasia Ltd -----Original Message----- From: Raketla, Gandhi (IE10) [mailto:Rak...@ho...] Sent: Tuesday, July 29, 2003 3:33 PM To: jch...@li... Subject: [jCharts-users] Jchart Features Hello All, I need information about, if the j chart provides following features. 1. Email Notification and Reports via email. 2. Preview Report support. 3. Visual Designer support. 4. Template Definitions. 5. Is Jchart supported on platforms (Windows, Solaris,IBM AIX, Linux). 6. Minimum JDK requirements for jChart 7. Application servers supported by J chart. Thanks and Regards Gandhi,Raketla Software Engineer Digital Enterprise Solutions Honeywell > Honeywell Technology Solutions Lab > 151/1 Doraisanipalya, Bannerghatta Road, > Bangalore 560 076, INDIA > Phone: ++91-80-6585751(Extn :3120) > Fax : ++91-80-6584750 mobile : +91-80-31815880 ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ jCharts-users mailing list jCh...@li... https://lists.sourceforge.net/lists/listinfo/jcharts-users |
From: Raketla, G. (IE10) <Rak...@ho...> - 2003-07-29 10:08:00
|
Hello All, I need information about, if the j chart provides following features. 1. Email Notification and Reports via email. 2. Preview Report support 3. Visual Designer support. 4. Template Definitions 5. Is Jchart supported on platforms (Windows, Solaris,IBM AIX, Linux). 6. Minimum JDK requirements for jChart 7. Application servers supported by J chart. Thanks and Regards Gandhi,Raketla Software Engineer Digital Enterprise Solutions Honeywell > Honeywell Technology Solutions Lab > 151/1 Doraisanipalya, Bannerghatta Road, > Bangalore 560 076, INDIA > Phone: ++91-80-6585751(Extn :3120) > Fax : ++91-80-6584750 mobile : +91-80-31815880 |
From: Nathaniel G. A. <nat...@ya...> - 2003-07-24 13:04:51
|
--- "Raketla, Gandhi (IE10)" <Rak...@ho...> wrote: > Hi, > Does Jchart provides support for the following features > > 1.Interactive data visualization > 2. Click Through / Drill Down support There is the ability to do client side image maps from jcharts. What you choose to do with the image maps is up to you. Fly throughs of the data is not supported. > 3. BLOB Bitmap support. jCharts is database independent; we simply utilize the Paint interface. Take a look at thffe java.awt.TexturePaint implementation. ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raketla, G. (IE10) <Rak...@ho...> - 2003-07-24 12:27:40
|
Hi, Does Jchart provides support for the following features 1.Interactive data visualization 2. Click Through / Drill Down support 3. BLOB Bitmap support. Please mail me back, if any body used these feature using Jchart. Thanks and Regards Gandhi,Raketla Software Engineer Digital Enterprise Solutions Honeywell > Honeywell Technology Solutions Lab > 151/1 Doraisanipalya, Bannerghatta Road, > Bangalore 560 076, INDIA > Phone: ++91-80-6585751(Extn :3120) > Fax : ++91-80-6584750 mobile : +91-80-31815880 |
From: Carella G. <Mar...@am...> - 2003-07-23 08:05:13
|
Good Morning, the interesting thing is that I don't call in import this class, and I = don't use this class. My idea is that server configuration need something else ( I setted = System.setProperty("java.awt.headless","true");System.setProperty("DISPLA= Y","10.139.27.81:1.0"); ). Thank you. You are very kind. =20 Giovanna =20 =20 Ai sensi della Legge 675/96 si precisa che le informazioni contenute in = questo messaggio sono riservate ed a uso esclusivo del destinatario. = Qualora il messaggio in parola Le fosse pervenuto per errore, la = preghiamo di eliminarlo senza copiarlo e di non inoltrarlo a terzi, = dandocene gentilmente comunicazione. Grazie.<BR><BR>This message, for = the law 675/96, may contain confidential and/or privileged information. = If you are not the addressee or authorized to receive this for the = addressee, you must not use, copy, disclose or take any action based on = this message or any information herein. If you have received this = message in error, please advise the sender immediately by reply e-mail = and delete this message. Thank you for your cooperation. |
From: Nathaniel G. A. <nat...@ya...> - 2003-07-22 15:17:22
|
Can you see any of the jCharts Classes? If you comment out the ChartFont call do you get a NoClassDefFoundError on another Class? --- Carella Giovanna <Mar...@am...> wrote: > We put all file.jar only in a folder (/Lib), so I don't need to specify the classpath (from > Websphere Advanced administrative console on AIX), before to do the deploy I verified, on local, > with right click on the web project the java build path/libreries...Can I do something else? > > -----Original Message----- > From: Carella Giovanna > Sent: Tuesday, July 22, 2003 4:23 PM > To: 'jch...@li...' > Subject: > > > > > Hi, > I'm using jChart 0.7.4 (with Websphere 4.0.3), on localhost ( windows 2000) all is Ok, but when > the same application run on server AIX , I have this problem > > org/jCharts/properties/util/ChartFont: java.lang.NoClassDefFoundError: > org/jCharts/properties/util/ChartFont > > I verify the classpath on application server is ok. > Is there some settings or something that I'm not doing correctly? > Please help me and forgive my bad english.... > > Thanks > Giovanna > > Ai sensi della Legge 675/96 si precisa che le informazioni contenute in questo messaggio sono > riservate ed a uso esclusivo del destinatario. Qualora il messaggio in parola Le fosse pervenuto > per errore, la preghiamo di eliminarlo senza copiarlo e di non inoltrarlo a terzi, dandocene > gentilmente comunicazione. Grazie.<BR><BR>This message, for the law 675/96, may contain > confidential and/or privileged information. If you are not the addressee or authorized to > receive this for the addressee, you must not use, copy, disclose or take any action based on > this message or any information herein. If you have received this message in error, please > advise the sender immediately by reply e-mail and delete this message. Thank you for your cooperation. ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Carella G. <Mar...@am...> - 2003-07-22 14:47:37
|
We put all file.jar only in a folder (/Lib), so I don't need to specify = the classpath (from Websphere Advanced administrative console on AIX), = before to do the deploy I verified, on local, with right click on the = web project the java build path/libreries...Can I do something else? -----Original Message----- From: Carella Giovanna=20 Sent: Tuesday, July 22, 2003 4:23 PM To: 'jch...@li...' Subject:=20 Hi, I'm using jChart 0.7.4 (with Websphere 4.0.3), on localhost ( windows = 2000) all is Ok, but when the same application run on server AIX , I = have this problem =20 org/jCharts/properties/util/ChartFont: java.lang.NoClassDefFoundError: = org/jCharts/properties/util/ChartFont I verify the classpath on application server is ok. Is there some settings or something that I'm not doing correctly? Please help me and forgive my bad english.... =20 Thanks Giovanna Ai sensi della Legge 675/96 si precisa che le informazioni contenute in = questo messaggio sono riservate ed a uso esclusivo del destinatario. = Qualora il messaggio in parola Le fosse pervenuto per errore, la = preghiamo di eliminarlo senza copiarlo e di non inoltrarlo a terzi, = dandocene gentilmente comunicazione. Grazie.<BR><BR>This message, for = the law 675/96, may contain confidential and/or privileged information. = If you are not the addressee or authorized to receive this for the = addressee, you must not use, copy, disclose or take any action based on = this message or any information herein. If you have received this = message in error, please advise the sender immediately by reply e-mail = and delete this message. Thank you for your cooperation. |
From: Carella G. <Mar...@am...> - 2003-07-22 14:23:05
|
Hi, I'm using jChart 0.7.4 (with Websphere 4.0.3), on localhost ( windows = 2000) all is Ok, but when the same application run on server AIX , I = have this problem =20 org/jCharts/properties/util/ChartFont: java.lang.NoClassDefFoundError: = org/jCharts/properties/util/ChartFont I verify the classpath on application server is ok. Is there some settings or something that I'm not doing correctly? Please help me and forgive my bad english.... =20 Thanks Giovanna Ai sensi della Legge 675/96 si precisa che le informazioni contenute in = questo messaggio sono riservate ed a uso esclusivo del destinatario. = Qualora il messaggio in parola Le fosse pervenuto per errore, la = preghiamo di eliminarlo senza copiarlo e di non inoltrarlo a terzi, = dandocene gentilmente comunicazione. Grazie.<BR><BR>This message, for = the law 675/96, may contain confidential and/or privileged information. = If you are not the addressee or authorized to receive this for the = addressee, you must not use, copy, disclose or take any action based on = this message or any information herein. If you have received this = message in error, please advise the sender immediately by reply e-mail = and delete this message. Thank you for your cooperation. |
From: Nathaniel G. A. <nat...@ya...> - 2003-07-22 13:45:19
|
How did you verify your classpath on the server? Are you sure you have the right version of jCharts on the ClassPath? This looks like a classpath issue. --- Carella Giovanna <Mar...@am...> wrote: > Hi, > I'm using jChart 0.7.4 (with Websphere 4.0.3), on localhost ( windows 2000) all is Ok, but when > the same application run on server AIX , I have this problem > > org/jCharts/properties/util/ChartFont: java.lang.NoClassDefFoundError: > org/jCharts/properties/util/ChartFont > > I verify the classpath on application server is ok. > Is there some settings or something that I'm not doing correctly? > Please help me and forgive my bad english.... > > Thanks > Giovanna > Ai sensi della Legge 675/96 si precisa che le informazioni contenute in questo messaggio sono > riservate ed a uso esclusivo del destinatario. Qualora il messaggio in parola Le fosse pervenuto > per errore, la preghiamo di eliminarlo senza copiarlo e di non inoltrarlo a terzi, dandocene > gentilmente comunicazione. Grazie.<BR><BR>This message, for the law 675/96, may contain > confidential and/or privileged information. If you are not the addressee or authorized to > receive this for the addressee, you must not use, copy, disclose or take any action based on > this message or any information herein. If you have received this message in error, please > advise the sender immediately by reply e-mail and delete this message. Thank you for your cooperation. ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-07-16 01:11:12
|
--- Mike Eggleston <mi...@mi...> wrote: > Hi, > > I'm sorry to ask this, but I need some help. > At the bottom of this message is what I have so far. > The code does plot, but the scaling is not limited to > only the numbers around the input data. The scaling > starts from zero and goes up from there. I only want > the area around the input data. This is the section from the user guide: User Defined Scale By default, the value Axis will compute a scale range that includes all points in the data set and is rounded to the power of ten specified. Make note of that last statment. If you enter a scale increment of 35 and use a rounding value of 100, your increment will become 100. The following example sets the axis to start at -2000 and go up in increments of 850. It also sets the rounding factor to the nearst 0/100 or 10 to the 0'th power, so we will see increments of 850. Had this been left at the default value, the increment would have been 900. code: AxisProperties axisProperties= new AxisProperties(); DataAxisProperties dataAxisProperties= (DataAxisProperties) axisProperties.getYAxisProperties(); dataAxisProperties.setUserDefinedScale( -2000, 850 ); dataAxisProperties.setRoundToNearest( 0 ); > Once that gets fixed I next need to overlay lines > on top of the stock bars, then I need to limit the > chart to plotting only data in a specific range at > the end of the dataset (only the most recent data), > or to through code remove the oldest datum in the > dataset as the newest datum is pushed on. Take a look at the User Guide for a Combo Chart for Lines over Bars. You could use the date set interfaces to create your own implementation, or you could simply have your own List and convert that to an array of double[][] > Can anyone help me or point me where I need to travel > to accomplish this task? > > Mike ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Mike E. <mi...@mi...> - 2003-07-16 00:09:46
|
Hi, I'm sorry to ask this, but I need some help. At the bottom of this message is what I have so far. The code does plot, but the scaling is not limited to only the numbers around the input data. The scaling starts from zero and goes up from there. I only want the area around the input data. Once that gets fixed I next need to overlay lines on top of the stock bars, then I need to limit the chart to plotting only data in a specific range at the end of the dataset (only the most recent data), or to through code remove the oldest datum in the dataset as the newest datum is pushed on. Can anyone help me or point me where I need to travel to accomplish this task? Mike |
From: Nathaniel G. A. <nat...@ya...> - 2003-07-11 22:10:31
|
--- Pascal Forget <pas...@ne...> wrote: > Hi, > > First let me say thanks a million to those who wrote JCharts. > I am looking forward to contribute to the project in the very > near future. > great. > I have a pie chart, and I display the legend values to > display nice labels around the slices. But I would like > not to display the legend. > > Is that possible? Yes, just pass NULL as the LegendProperties. take a look at: http://jcharts.krysalis.org/userGuide/legendVisibility.html This feature is the same across all chart types. > > P.S. I wrote a Java servlet which generates a pie chart > on the fly based on the http request received. Everything > in the chart including the values, legend, slice colors, > fonts and title are provided URL-encoded as part of the > request. If you guys ever need to add this to the sample > code that's bundled with JCharts, let me know. > Post your sample to this list and we will have a look at it. Perhaps this would be a good example for the User Guide? Even if it does not get included, posting it here could help other people out too. ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: <pas...@ne...> - 2003-07-11 20:10:18
|
Hi, First let me say thanks a million to those who wrote JCharts. I am looking forward to contribute to the project in the very near future. I have a pie chart, and I display the legend values to display nice labels around the slices. But I would like not to display the legend. Is that possible? Thanks, Pascal Forget P.S. I wrote a Java servlet which generates a pie chart on the fly based on the http request received. Everything in the chart including the values, legend, slice colors, fonts and title are provided URL-encoded as part of the request. If you guys ever need to add this to the sample code that's bundled with JCharts, let me know. __________________________________________________________________ McAfee VirusScan Online from the Netscape Network. Comprehensive protection for your entire computer. Get your free trial today! http://channels.netscape.com/ns/computing/mcafee/index.jsp?promo=393397 Get AOL Instant Messenger 5.1 free of charge. Download Now! http://aim.aol.com/aimnew/Aim/register.adp?promo=380455 |
From: Nathaniel G. A. <nat...@ya...> - 2003-07-06 13:13:00
|
--- Rainer Romatka <rai...@at...> wrote: > It took a little longer than anticipated but I finally got around to > checking this out on a different platform. The news is that this > problem is indeed specific to Apple's implementation of JDK 1.4.1. When > I ran my app on Windows XP with Sun's JDK (also 1.4.1) the chart looks > perfectly fine. > > Nathaniel: Are you interested to bring this problem to Apple's > attention or do you not care about that platform. If you're interested > we could work on isolating the problem in more detail and submit a bug > to Apple. Sure. How do you suggest we proceed? ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Rainer R. <rai...@at...> - 2003-07-05 22:38:27
|
It took a little longer than anticipated but I finally got around to checking this out on a different platform. The news is that this problem is indeed specific to Apple's implementation of JDK 1.4.1. When I ran my app on Windows XP with Sun's JDK (also 1.4.1) the chart looks perfectly fine. Nathaniel: Are you interested to bring this problem to Apple's attention or do you not care about that platform. If you're interested we could work on isolating the problem in more detail and submit a bug to Apple. Cheers, Rainer On Saturday, Jun 21, 2003, at 12:53 US/Pacific, Rainer Romatka wrote: > Sorry for starting a new thread on this topic - I wasn't fully signed > up to this mailing list. > > Nathaniel requested version/platform information. > > I'm using jCharts 0.7.2 using the JKD 1.4.1 from Apple on Mac OS X > 10.2.6. I'll see whether I can reproduce this on a different platform > but probably won't get to it until a week from now. If it persists > I'll write some self contained code that exhibits this behavior. > > By the way, this will not keep me from using jCharts (I don't > absolutely need a label for the y axis). I was more interested if > anyone else had seen something similar and how they solved it. Overall > I'm very impressed with jCharts. I have very little problems turning > the example code into what I needed. > > Regards, > > Rainer > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: INetU > Attention Web Developers & Consultants: Become An INetU Hosting > Partner. > Refer Dedicated Servers. We Manage Them. You Get 10% Monthly > Commission! > INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > |
From: Nathaniel G. A. <nat...@ya...> - 2003-07-02 19:51:34
|
what version of jcharts are you using? what is the title you are using? --- "Callies, Peter" <Pet...@Mc...> wrote: > When trying to use the JPEGEncoder to write to a ByteArrayOutputStream, I > get the following. Is there some intialization or something that I'm not > doing correctly? > > java.lang.ArrayIndexOutOfBoundsException: -1 > at java.awt.font.LineBreakMeasurer.nextOffset(LineBreakMeasurer.java:346) > at java.awt.font.LineBreakMeasurer.nextLayout(LineBreakMeasurer.java:422) > at java.awt.font.LineBreakMeasurer.nextLayout(LineBreakMeasurer.java:395) > at org.jCharts.Chart.renderChartTitle(Unknown Source) > at org.jCharts.axisChart.AxisChart.renderChart(Unknown Source) > at org.jCharts.Chart.render(Unknown Source) > at org.jCharts.encoders.BinaryEncoderUtil.render(Unknown Source) > at org.jCharts.encoders.JPEGEncoder.encode(Unknown Source) > > -Peter > ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Callies, P. <Pet...@Mc...> - 2003-07-02 19:22:01
|
When trying to use the JPEGEncoder to write to a ByteArrayOutputStream, I get the following. Is there some intialization or something that I'm not doing correctly? java.lang.ArrayIndexOutOfBoundsException: -1 at java.awt.font.LineBreakMeasurer.nextOffset(LineBreakMeasurer.java:346) at java.awt.font.LineBreakMeasurer.nextLayout(LineBreakMeasurer.java:422) at java.awt.font.LineBreakMeasurer.nextLayout(LineBreakMeasurer.java:395) at org.jCharts.Chart.renderChartTitle(Unknown Source) at org.jCharts.axisChart.AxisChart.renderChart(Unknown Source) at org.jCharts.Chart.render(Unknown Source) at org.jCharts.encoders.BinaryEncoderUtil.render(Unknown Source) at org.jCharts.encoders.JPEGEncoder.encode(Unknown Source) -Peter |
From: Nathaniel G. A. <nat...@ya...> - 2003-07-02 01:42:58
|
> Has anyone done any work on rendering the bar charts in a 3D look? I'm > guessing this could be implemented using a custom renderer? Am I on the > right track? > Not yet. I just brought back the 3d pie from jcharts 0.2 (still have a little work to do). A 3d looking bar would not be too difficult to implement. A cheap way to do it would be to simply draw a bar several times(depth), off setting one by a pixel down and to the side. Sort of sliding the bar without clearing the image. Simply trap the first and last to draw a border, then draw the other edges. (see attached 3d pie chart) > Now for something tricker: What about 3-d, for example y-axis plots a > value, x-axis plots the days, and z-axis plots the hours within the day > ? Same approach, but subdivide the depth by the number of bars in each cluster for a clustered 3d look. ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Chris M. <ch...@de...> - 2003-07-02 00:22:28
|
Hi, A couple of questions for users of Jcharts, looks pretty slick BTW. Has anyone done any work on rendering the bar charts in a 3D look? I'm guessing this could be implemented using a custom renderer? Am I on the right track? Now for something tricker: What about 3-d, for example y-axis plots a value, x-axis plots the days, and z-axis plots the hours within the day ? Any info would be greatly apprciated, Regards, Chris |
From: Nathaniel G. A. <nat...@ya...> - 2003-06-29 14:09:48
|
In porting the User Guide over to using Forrest, I have found a couple minor bugs which are significant enough in my opinion to warrant another patch release to the 0.7.0 tree. # Fixed Bug: The Y-Axis Title was not centering itself vertically on the y-axis. # Fixed Bug: multi-line chart title not computing its height correctly. ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-06-27 12:34:42
|
hey Rainer, Give the new JDK 1.4.2 a try to see if this resolves your problem. http://java.sun.com/j2se/1.4.2/index.html --- Rainer Romatka <rai...@at...> wrote: > Sorry for starting a new thread on this topic - I wasn't fully signed > up to this mailing list. > > Nathaniel requested version/platform information. > > I'm using jCharts 0.7.2 using the JKD 1.4.1 from Apple on Mac OS X > 10.2.6. I'll see whether I can reproduce this on a different platform > but probably won't get to it until a week from now. If it persists I'll > write some self contained code that exhibits this behavior. > > By the way, this will not keep me from using jCharts (I don't > absolutely need a label for the y axis). I was more interested if > anyone else had seen something similar and how they solved it. Overall > I'm very impressed with jCharts. I have very little problems turning > the example code into what I needed. > > Regards, > > Rainer > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: INetU > Attention Web Developers & Consultants: Become An INetU Hosting Partner. > Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission! > INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users ===== http://nathaniel-auvil.blog-city.com/ __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |