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-10-15 03:21:03
|
You are passing NULL in for the ChartProperties, AxisProperties, LegendProperties, and BarChartProperties --- Christian Cryder <chr...@gr...> wrote: > Hi folks, > > I'm obviously doing something stupid, so maybe you can help me... Here's my > code snippet, taken from the samples: > ---------------------------------- > BarChartProperties barChartProperties = null; > LegendProperties legendProperties = null; > AxisProperties axisProperties = null; > ChartProperties chartProperties = null; > int width = 550; > int height = 360; > > try { > String[] xAxisLabels = {"1995", "1996", "1997", "1998", "1999", "2000", > "2001", "2002", "2003", "2004"}; > String xAxisTitle = "Years"; > String yAxisTitle = "Problems"; > String title = "Micro$oft At Work"; > IAxisDataSeries dataSeries = new DataSeries( xAxisLabels, xAxisTitle, > yAxisTitle, title ); > > double[][] data = new double[][]{{1500, 6880, 4510, 2600, 1200, 1580, > 8000, 4555, 4000, 6120}}; > String[] legendLabels = {"Bugs"}; > Paint[] paints = new Paint[]{Color.blue.darker()}; > dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, > legendLabels, paints, ChartType.BAR, barChartProperties ) ); > AxisChart axisChart = new AxisChart( dataSeries, chartProperties, > axisProperties, legendProperties, width, height); > > ... > ServletEncoderHelper.encodePNG(axisChart, httpServletResponse); > ... > > catch(ChartDataException chartDataException) { > chartDataException.printStackTrace(); > } > ---------------------------------- > > Notice that I am _not_ calling renderWithImageMap(), getImageMap(), etc the > way the sample is. Instead, I'm trying to use the chart normally, just as an > image. > > The problem occurs within encodePNG()...it basically throws a null pointer > exception, and because the code was apparently compiled without line > numbers, I don't get a whole lot for debugging... > > Now, I tried a simple pie chart example, and that _did_ work...so obviously, > I am doing something specifically wrong here. Does anyone have any ideas? Or > do I have to go build the project from source in order to get line numbers > and then track it down from there. > > Any suggestions would be greatly appreciated... > > tia, > Christian > ---------------------------------------------- > Christian Cryder > Internet Architect, ATMReports.com > Project Chair, BarracudaMVC - http://barracudamvc.org > ---------------------------------------------- > "Coffee? I could quit anytime, just not today" > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Christian C. <chr...@gr...> - 2003-10-15 00:43:50
|
So I have taken the one example I have working (Pie Chart) and tried to render it in SVG format. I took the SVG jars from jCharts-0.7.4\lib and plunked them into Tomcat's shared/lib and now then changed my call from: ServletEncoderHelper.encodePNG(chart, context.getResponse()); to: ServletEncoderHelper.encodeServlet(chart, context.getResponse()); Kabowie: error encoding chart:org.apache.batik.svggen.SVGGraphics2DIOException: Connection reset by peer: socket write error org.apache.batik.svggen.SVGGraphics2DIOException: Connection reset by peer: socket write error at org.apache.batik.svggen.XmlWriter.writeXml(Unknown Source) at org.apache.batik.svggen.SVGGraphics2D.stream(Unknown Source) at org.apache.batik.svggen.SVGGraphics2D.stream(Unknown Source) at org.jCharts.encoders.SVGEncoder.encode(SVGEncoder.java:103) at org.jCharts.encoders.ServletEncoderHelper.encodeServlet(ServletEncoderHelper .java:76) Anyone have any suggestions here? I am running on Win2k, j2sdk1.4.2_01, with Tomcat 4.1. tia, Christian ---------------------------------------------- Christian Cryder Internet Architect, ATMReports.com Project Chair, BarracudaMVC - http://barracudamvc.org ---------------------------------------------- "Coffee? I could quit anytime, just not today" |
From: Christian C. <chr...@gr...> - 2003-10-15 00:04:30
|
For what its worth, I now have a stack trace... java.lang.NullPointerException at org.jCharts.Chart.render(Chart.java:156) at org.jCharts.encoders.BinaryEncoderUtil.render(BinaryEncoderUtil.java:90) at org.jCharts.encoders.PNGEncoder.encode(PNGEncoder.java:91) at org.jCharts.encoders.ServletEncoderHelper.encodePNG(ServletEncoderHelper.jav a:137) Which traces to this: this.graphics2D.setPaint( this.chartProperties.getBackgroundPaint() ); Suggestions? Christian ---------------------------------------------- Christian Cryder Internet Architect, ATMReports.com Project Chair, BarracudaMVC - http://barracudamvc.org ---------------------------------------------- "Coffee? I could quit anytime, just not today" > -----Original Message----- > From: jch...@li... > [mailto:jch...@li...]On Behalf Of Christian > Cryder > Sent: Tuesday, October 14, 2003 6:59 PM > To: jCharts-users > Subject: [jCharts-users] getting started > > > Hi folks, > > I'm obviously doing something stupid, so maybe you can help me... > Here's my > code snippet, taken from the samples: > ---------------------------------- > BarChartProperties barChartProperties = null; > LegendProperties legendProperties = null; > AxisProperties axisProperties = null; > ChartProperties chartProperties = null; > int width = 550; > int height = 360; > > try { > String[] xAxisLabels = {"1995", "1996", "1997", "1998", > "1999", "2000", > "2001", "2002", "2003", "2004"}; > String xAxisTitle = "Years"; > String yAxisTitle = "Problems"; > String title = "Micro$oft At Work"; > IAxisDataSeries dataSeries = new DataSeries( xAxisLabels, xAxisTitle, > yAxisTitle, title ); > > double[][] data = new double[][]{{1500, 6880, 4510, 2600, 1200, 1580, > 8000, 4555, 4000, 6120}}; > String[] legendLabels = {"Bugs"}; > Paint[] paints = new Paint[]{Color.blue.darker()}; > dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, > legendLabels, paints, ChartType.BAR, barChartProperties ) ); > AxisChart axisChart = new AxisChart( dataSeries, chartProperties, > axisProperties, legendProperties, width, height); > > ... > ServletEncoderHelper.encodePNG(axisChart, httpServletResponse); > ... > > catch(ChartDataException chartDataException) { > chartDataException.printStackTrace(); > } > ---------------------------------- > > Notice that I am _not_ calling renderWithImageMap(), > getImageMap(), etc the > way the sample is. Instead, I'm trying to use the chart normally, > just as an > image. > > The problem occurs within encodePNG()...it basically throws a null pointer > exception, and because the code was apparently compiled without line > numbers, I don't get a whole lot for debugging... > > Now, I tried a simple pie chart example, and that _did_ work...so > obviously, > I am doing something specifically wrong here. Does anyone have > any ideas? Or > do I have to go build the project from source in order to get line numbers > and then track it down from there. > > Any suggestions would be greatly appreciated... > > tia, > Christian > ---------------------------------------------- > Christian Cryder > Internet Architect, ATMReports.com > Project Chair, BarracudaMVC - http://barracudamvc.org > ---------------------------------------------- > "Coffee? I could quit anytime, just not today" > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users |
From: Christian C. <chr...@gr...> - 2003-10-14 22:58:17
|
Hi folks, I'm obviously doing something stupid, so maybe you can help me... Here's my code snippet, taken from the samples: ---------------------------------- BarChartProperties barChartProperties = null; LegendProperties legendProperties = null; AxisProperties axisProperties = null; ChartProperties chartProperties = null; int width = 550; int height = 360; try { String[] xAxisLabels = {"1995", "1996", "1997", "1998", "1999", "2000", "2001", "2002", "2003", "2004"}; String xAxisTitle = "Years"; String yAxisTitle = "Problems"; String title = "Micro$oft At Work"; IAxisDataSeries dataSeries = new DataSeries( xAxisLabels, xAxisTitle, yAxisTitle, title ); double[][] data = new double[][]{{1500, 6880, 4510, 2600, 1200, 1580, 8000, 4555, 4000, 6120}}; String[] legendLabels = {"Bugs"}; Paint[] paints = new Paint[]{Color.blue.darker()}; dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, legendLabels, paints, ChartType.BAR, barChartProperties ) ); AxisChart axisChart = new AxisChart( dataSeries, chartProperties, axisProperties, legendProperties, width, height); ... ServletEncoderHelper.encodePNG(axisChart, httpServletResponse); ... catch(ChartDataException chartDataException) { chartDataException.printStackTrace(); } ---------------------------------- Notice that I am _not_ calling renderWithImageMap(), getImageMap(), etc the way the sample is. Instead, I'm trying to use the chart normally, just as an image. The problem occurs within encodePNG()...it basically throws a null pointer exception, and because the code was apparently compiled without line numbers, I don't get a whole lot for debugging... Now, I tried a simple pie chart example, and that _did_ work...so obviously, I am doing something specifically wrong here. Does anyone have any ideas? Or do I have to go build the project from source in order to get line numbers and then track it down from there. Any suggestions would be greatly appreciated... tia, Christian ---------------------------------------------- Christian Cryder Internet Architect, ATMReports.com Project Chair, BarracudaMVC - http://barracudamvc.org ---------------------------------------------- "Coffee? I could quit anytime, just not today" |
From: Nathaniel G. A. <nat...@ya...> - 2003-10-14 16:15:45
|
You can increase the edgePadding() on the ChartProperties Object to allow more space between the edge of the chart and edge of the image. --- Michael Kroll <mic...@tr...> wrote: > Hi, > I'm currently plaing around with the nice JCharts lib, in order to draw > a line chart. > Many of the samples provided in the Users Manual, shows line charts, > where the first x value is > not plotted on the y axis, and the last value does not end on the end of > the chart it self. > There is some space between the y axis and the first value and the last > value and the right border > of the chart. resulting all labels are drawed. I tried to create my own > chart, bit the first point is > drawn on the y axis and the last point directly on the right border so > the last label is not drawn > allthough the labes are set to vertical. > > How can I achive the line to be centered? > > Thanks for your help. > > Kind Regards, > > Michael Kroll > > Co-Author of the SAMS book "J2ME Application Development" and > Markt+Technik "Java 2 Micro Edition Developer's Guide" > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > SourceForge.net hosts over 70,000 Open Source Projects. > See the people who have HELPED US provide better services: > Click here: http://sourceforge.net/supporters.php > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Michael K. <mic...@tr...> - 2003-10-14 14:49:30
|
Hi, I'm currently plaing around with the nice JCharts lib, in order to draw a line chart. Many of the samples provided in the Users Manual, shows line charts, where the first x value is not plotted on the y axis, and the last value does not end on the end of the chart it self. There is some space between the y axis and the first value and the last value and the right border of the chart. resulting all labels are drawed. I tried to create my own chart, bit the first point is drawn on the y axis and the last point directly on the right border so the last label is not drawn allthough the labes are set to vertical. How can I achive the line to be centered? Thanks for your help. Kind Regards, Michael Kroll Co-Author of the SAMS book "J2ME Application Development" and Markt+Technik "Java 2 Micro Edition Developer's Guide" |
From: Christian C. <chr...@gr...> - 2003-10-13 17:14:20
|
Sheesh. Never mind. Wouldn't you know it that no sooner do I ask the question than I find the answer myself. There they are sitting in the WEB-INF/classes directory... (not where I would have expected them I guess, but still, I should have seen it). My apologies. Christian ---------------------------------------------- Christian Cryder Internet Architect, ATMReports.com Project Chair, BarracudaMVC - http://barracudamvc.org ---------------------------------------------- "Coffee? I could quit anytime, just not today" > -----Original Message----- > From: Christian Cryder [mailto:chr...@gr...] > Sent: Monday, October 13, 2003 1:12 PM > To: jCharts-users > Subject: Servlet source? > > > Hey folks, > > I just downloaded jCharts 0.7 to evaluate it, and I'm having a > hard time locating HorizontalBarImageMapServlet.java...the class > file exists in the demo section, but I can't see to find the > source anywhere (either in the download or in cvs) > > Suggestions? > > thx, > Christian > ---------------------------------------------- > Christian Cryder > Internet Architect, ATMReports.com > Project Chair, BarracudaMVC - http://barracudamvc.org > ---------------------------------------------- > "Coffee? I could quit anytime, just not today" > |
From: Christian C. <chr...@gr...> - 2003-10-13 17:11:20
|
Hey folks, I just downloaded jCharts 0.7 to evaluate it, and I'm having a hard time locating HorizontalBarImageMapServlet.java...the class file exists in the demo section, but I can't see to find the source anywhere (either in the download or in cvs) Suggestions? thx, Christian ---------------------------------------------- Christian Cryder Internet Architect, ATMReports.com Project Chair, BarracudaMVC - http://barracudamvc.org ---------------------------------------------- "Coffee? I could quit anytime, just not today" |
From: Nathaniel G. A. <nat...@ya...> - 2003-10-10 13:34:09
|
i dont know what your screen contoller is so I am not sure. if you wnat to have a chart on a page, simple have an <img src="my.jsp"> or <img src="myChartServlet"> or <img src="whateverMyInvokerURLis"> Did you take a look at the examples? If you have a specific question on how the examples work perhaps I could be of more help. --- "ROUSSEL, Patrick (euler:sfac)" <Pat...@eu...> wrote: > I would like insert Jcharts in jsp with framework screen controller, how i > can do that ? > > regards > > > Euler Hermes is the world's premier credit insurer, offering solutions for > the management of trade receivables, from credit insurance and factoring to > bonding and guarantees. > ------------------------------------ > This e-mail may contain confidential and/or privileged information. If you > are not the intended recipient or have received this e-mail in error, notify > the sender immediately and destroy this e-mail. Any unauthorised use, > copying, disclosure or distribution of the contents of this e-mail is > strictly forbidden and may be unlawful. > Read our full e-mail disclaimer statement and monitoring policy > (http://www.eulerhermes.com/disclaim/email.cfm) before taking any action > based on the contents of this e-mail. > > > > > > ATTACHMENT part 2 image/gif name=framework screen controller.gif __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: ROUSSEL, P. (euler:sfac) <Pat...@eu...> - 2003-10-10 08:26:09
|
Framework use jsp and Javabeans for dynamic gui. Euler Hermes is the world's premier credit insurer, offering solutions for the management of trade receivables, from credit insurance and factoring to bonding and guarantees. ------------------------------------ This e-mail may contain confidential and/or privileged information. If you are not the intended recipient or have received this e-mail in error, notify the sender immediately and destroy this e-mail. Any unauthorised use, copying, disclosure or distribution of the contents of this e-mail is strictly forbidden and may be unlawful. Read our full e-mail disclaimer statement and monitoring policy (http://www.eulerhermes.com/disclaim/email.cfm) before taking any action based on the contents of this e-mail. |
From: Nathaniel G. A. <nat...@ya...> - 2003-10-09 14:37:25
|
did you look at the Servlet samples in the demo package? --- "ROUSSEL, Patrick (euler:sfac)" <Pat...@eu...> wrote: > Hello, > > I am beginer java, and i would like insert jcharts graphics in jsp, > but i use a mvc framework (CGI J2EE FRAMEWORK), my question is how put > dynamic graphic from > framework to jsp with servlet ? > > Do you have some examples > > Regards > > > Patrick Roussel > > > > Euler Hermes is the world's premier credit insurer, offering solutions for > the management of trade receivables, from credit insurance and factoring to > bonding and guarantees. > ------------------------------------ > This e-mail may contain confidential and/or privileged information. If you > are not the intended recipient or have received this e-mail in error, notify > the sender immediately and destroy this e-mail. Any unauthorised use, > copying, disclosure or distribution of the contents of this e-mail is > strictly forbidden and may be unlawful. > Read our full e-mail disclaimer statement and monitoring policy > (http://www.eulerhermes.com/disclaim/email.cfm) before taking any action > based on the contents of this e-mail. > > > __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: ROUSSEL, P. (euler:sfac) <Pat...@eu...> - 2003-10-09 13:06:33
|
Hello, I am beginer java, and i would like insert jcharts graphics in jsp, but i use a mvc framework (CGI J2EE FRAMEWORK), my question is how put dynamic graphic from framework to jsp with servlet ? Do you have some examples Regards Patrick Roussel Euler Hermes is the world's premier credit insurer, offering solutions for the management of trade receivables, from credit insurance and factoring to bonding and guarantees. ------------------------------------ This e-mail may contain confidential and/or privileged information. If you are not the intended recipient or have received this e-mail in error, notify the sender immediately and destroy this e-mail. Any unauthorised use, copying, disclosure or distribution of the contents of this e-mail is strictly forbidden and may be unlawful. Read our full e-mail disclaimer statement and monitoring policy (http://www.eulerhermes.com/disclaim/email.cfm) before taking any action based on the contents of this e-mail. |
From: Nathaniel G. A. <nat...@ya...> - 2003-10-09 12:53:03
|
how are you using MVC without Servlets? Are you using Struts or something? please address this to the jcharts users mailing list to ensure a timely response. --- "ROUSSEL, Patrick (euler:sfac)" <Pat...@eu...> wrote: > Hello, > > I am beginer java, and i would like insert jcharts graphics in jsp, but i > use a mvc framework, my question is how put dynamic graphic from framework > to jsp without servlet ? > > It is possible ? > > > Regards > > > Patrick Roussel > > > > Euler Hermes is the world's premier credit insurer, offering solutions for > the management of trade receivables, from credit insurance and factoring to > bonding and guarantees. > ------------------------------------ > This e-mail may contain confidential and/or privileged information. If you > are not the intended recipient or have received this e-mail in error, notify > the sender immediately and destroy this e-mail. Any unauthorised use, > copying, disclosure or distribution of the contents of this e-mail is > strictly forbidden and may be unlawful. > Read our full e-mail disclaimer statement and monitoring policy > (http://www.eulerhermes.com/disclaim/email.cfm) before taking any action > based on the contents of this e-mail. > > > __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-10-06 14:27:34
|
Take a look at the example Servlet code for how to generate the chart in a Servlet. --- Michael Kottmann <mko...@ya...> wrote: > I fixed that problem and it works great, but I have > another question. I'm fairly new to jsp's and > servlet's and I would like to integrate the two, but > am having a tough time with it. I'm currently using > the setAttribute method for each of the properties > (i.e. width, height, dataSet,...) and then casting > them when I call them in the jsp and creating the > chart. Is there an easier way to do this? I'm sure I > could just create the image in the servlet and then > pass it to the jsp, but I don't know how. Any help > that you can provide would be appreciated. > > Thanks, > Mike > > --- "Nathaniel G. Auvil" <nat...@ya...> > wrote: > > > > Did you place the demo war in your servlet > > containers "webapps" folder? What Servlet Container > > are you using? > > > > > > > > --- Michael Kottmann <mko...@ya...> wrote: > > > I recently downloaded and unzipped the jcharts > > api. > > > I'm currently trying to run one of the demo > > servlets > > > and I'm getting an error saying that it can't find > > any > > > of the imports. I set my classpath to look at the > > > jcharts-0.7.4.jar file, but it still isn't > > working. > > > Is there anything else that I need to do? > > > > > > Thanks, > > > Mike > > > > > > __________________________________ > > > Do you Yahoo!? > > > The New Yahoo! Shopping - with improved product > > search > > > http://shopping.yahoo.com > > > > > > > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > jCharts-users mailing list > > > jCh...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > > > > __________________________________ > > Do you Yahoo!? > > The New Yahoo! Shopping - with improved product > > search > > http://shopping.yahoo.com > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > jCharts-users mailing list > > jCh...@li... > > > https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Michael K. <mko...@ya...> - 2003-10-06 13:12:42
|
I fixed that problem and it works great, but I have another question. I'm fairly new to jsp's and servlet's and I would like to integrate the two, but am having a tough time with it. I'm currently using the setAttribute method for each of the properties (i.e. width, height, dataSet,...) and then casting them when I call them in the jsp and creating the chart. Is there an easier way to do this? I'm sure I could just create the image in the servlet and then pass it to the jsp, but I don't know how. Any help that you can provide would be appreciated. Thanks, Mike --- "Nathaniel G. Auvil" <nat...@ya...> wrote: > > Did you place the demo war in your servlet > containers "webapps" folder? What Servlet Container > are you using? > > > > --- Michael Kottmann <mko...@ya...> wrote: > > I recently downloaded and unzipped the jcharts > api. > > I'm currently trying to run one of the demo > servlets > > and I'm getting an error saying that it can't find > any > > of the imports. I set my classpath to look at the > > jcharts-0.7.4.jar file, but it still isn't > working. > > Is there anything else that I need to do? > > > > Thanks, > > Mike > > > > __________________________________ > > Do you Yahoo!? > > The New Yahoo! Shopping - with improved product > search > > http://shopping.yahoo.com > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > jCharts-users mailing list > > jCh...@li... > > > https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product > search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-10-03 16:24:42
|
Did you place the demo war in your servlet containers "webapps" folder? What Servlet Container are you using? --- Michael Kottmann <mko...@ya...> wrote: > I recently downloaded and unzipped the jcharts api. > I'm currently trying to run one of the demo servlets > and I'm getting an error saying that it can't find any > of the imports. I set my classpath to look at the > jcharts-0.7.4.jar file, but it still isn't working. > Is there anything else that I need to do? > > Thanks, > Mike > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Michael K. <mko...@ya...> - 2003-10-03 15:24:27
|
I recently downloaded and unzipped the jcharts api. I'm currently trying to run one of the demo servlets and I'm getting an error saying that it can't find any of the imports. I set my classpath to look at the jcharts-0.7.4.jar file, but it still isn't working. Is there anything else that I need to do? Thanks, Mike __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-10-01 12:42:36
|
simply increase the width of the image. Please do not address me directly as I might not be available; send questions to the user list for the best response rate. --- HappyManocha Manocha <hap...@ya...> wrote: > Hello Sir, > i m having one doubt in axis chart. > i want to increase the width for x-Axis . > how can i do that .. > can u plaese tell me > Thanks in advance > Regards > Happy Manocha > > > --------------------------------- > Do you Yahoo!? > The New Yahoo! Shopping - with improved product search __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Sven W. <sve...@ex...> - 2003-09-23 21:27:39
|
--- On Mon 09/22, Nathaniel G. Auvil < nat...@ya... > wrote: From: Nathaniel G. Auvil [mailto: nat...@ya...] To: jch...@li... Date: Mon, 22 Sep 2003 12:44:17 -0700 (PDT) Subject: Re: [jCharts-users] control of the x-axis labels Thanx for the explanation. I just asked if there is solution. It has really no urgency at all! So don't waste your time on that. Sven <br>Alls the code does is:<br><br>1) find the widest x-axis label<br>2) multiply that by the number of labels to see if they can all fit<br>3) if not, see if every 2nd, 3rd, 4th, ... will fit until it finds one that does.<br><br><br>I suppose we could expose an interface for this so you could alter the algorithm.<br><br><br><br>--- Sven Weber <sve...@ex...> wrote:<br>> <br>> <br>> <br>> thanx for the answer.<br>> <br>> I read that other thread about time series, but my problem has basically nothing to do with time<br>> series.<br>> <br>> The basic problems is this:<br>> <br>> You have more x-axis values than jcharts can print. So jcharts has to choose (with some<br>> algorithm) which labels it should print and which not.<br>> <br>> But in some cases e.g. in time series certain labels make a lot more sense to the human observer<br>> than others (e.g the start of each day).<br>> <br>> But it's not limited to time series. Let's say you have x-values from 0-873. Then a human viewer<br>> would maybe prefer labels of 0, 100, 200 ... 800, 900 and not some mathematically correct but<br>> "odd" numbers like 113, 226... <br>> <br>> And I looked for a possibility to control the labels that the jcharts algorithm should choose<br>> for printing.<br>> <br>> <br>> <br>> Sven<br>> <br>> <br>> <br>> <br>> <br>> <br>> <br>> --- On Sun 09/21, Nathaniel G. Auvil < nat...@ya... > wrote:<br>> <br>> From: Nathaniel G. Auvil [mailto: nat...@ya...]<br>> <br>> To: jch...@li...<br>> <br>> Date: Sun, 21 Sep 2003 19:55:43 -0700 (PDT)<br>> <br>> Subject: Re: [jCharts-users] control of the x-axis labels<br>> <br>> <br>> <br>> <br>Time Series charts are not available in the current release of jCharts. There appears to be<br>> some<br>demand for this type of chart as of late, so I am bumping it up on the priority list for<br>> the next<br>release.<br><br><br><br>--- Sven Weber <sve...@ex...> wrote:<br>> <br>><br>> Hi,<br>> <br>> <br>> <br>> and first of all hello from a jcharts newbie.<br>> <br>> <br>> <br>><br>> I worked thru the jcharts examples and find jCharts is really easy to use, so thanx. :-)<br>><br>> <br>> Now I have my first question:<br>> <br>> I need to create time series charts. The data<br>> usually consists of one value per 15 minutes. The<br>> charts should show a day, week or month<br>> of the measurement data. <br>> <br>> So I have 96 values per day, 576 value per week and around<br>> 2900 values per months.<br>> <br>> Now I can create a string from the time stamp of the value<br>> and add that string to the x-axis<br>> labels, but so far I found no way to let jcharts know,<br>> which x-axis labels should be printed and<br>> which not. E.g. if I create a "day chart" then it<br>> would be ok to have a label printed at every<br>> full hour and maybe every half hour. If it's a<br>> "week chart" then it would be ok to see time<br>> stamps from 12pm, 6am, 12am and 6pm of each<br>> day, but not something like 3.45pm or 5.15am.<br>> <br>> So the basic problem is that I have too<br>> much values so jcharts can not print each x-axis label,<br>> but I found no way to tell jcharts<br>> which labels should be printed and which not!<br>> <br>> Is there a solution for my<br>> problem?<br>> <br>> <br>> <br>> CU<br>> <br>> Sven<br>> <br>> <br>> <br>> <br>> <br>> <br>><br>> <br>> _______________________________________________<br>> Join Excite! -<br>> http://www.excite.com<br>> The most personalized portal on the Web!<br>> <br>> <br>><br>> -------------------------------------------------------<br>> This sf.net email is sponsored<br>> by:ThinkGeek<br>> Welcome to geek heaven.<br>> http://thinkgeek.com/sf<br>><br>> _______________________________________________<br>> jCharts-users mailing list<br>><br>> jCh...@li...<br>><br>><br>https://lists.sourceforge.net/lists/listinfo/jcharts-users<br><br><br>=====<br>http://nathaniel-auvil.blog-city.com/<br><br>__________________________________<br>Do<br>> you Yahoo!?<br>Yahoo! SiteBuilder - Free, easy-to-use web site design<br>><br>software<br>http://sitebuilder.yahoo.com<br><br><br>-------------------------------------------------------<br>This<br>> sf.net email is sponsored by:ThinkGeek<br>Welcome to geek<br>><br>heaven.<br>http://thinkgeek.com/sf<br>_______________________________________________<br>jCharts-users<br>> mailing<br>><br>list<br>jCh...@li...<br>https://lists.sourceforge.net/lists/listinfo/jcharts-users<br><br>> <br>> _______________________________________________<br>> Join Excite! - http://www.excite.com<br>> The most personalized portal on the Web!<br>> <br>> <br>> -------------------------------------------------------<br>> This sf.net email is sponsored by:ThinkGeek<br>> Welcome to geek heaven.<br>> http://thinkgeek.com/sf<br>> _______________________________________________<br>> jCharts-users mailing list<br>> jCh...@li...<br>> https://lists.sourceforge.net/lists/listinfo/jcharts-users<br><br><br>=====<br>http://nathaniel-auvil.blog-city.com/<br><br>__________________________________<br>Do you Yahoo!?<br>Yahoo! SiteBuilder - Free, easy-to-use web site design software<br>http://sitebuilder.yahoo.com<br><br><br>-------------------------------------------------------<br>This sf.net email is sponsored by:ThinkGeek<br>Welcome to geek heaven.<br>http://thinkgeek.com/sf<br>_______________________________________________<br>jCharts-users mailing list<br>jCh...@li...<br>https://lists.sourceforge.net/lists/listinfo/jcharts-users<br> _______________________________________________ Join Excite! - http://www.excite.com The most personalized portal on the Web! |
From: Nathaniel G. A. <nat...@ya...> - 2003-09-22 19:44:48
|
Alls the code does is: 1) find the widest x-axis label 2) multiply that by the number of labels to see if they can all fit 3) if not, see if every 2nd, 3rd, 4th, ... will fit until it finds one that does. I suppose we could expose an interface for this so you could alter the algorithm. --- Sven Weber <sve...@ex...> wrote: > > > > thanx for the answer. > > I read that other thread about time series, but my problem has basically nothing to do with time > series. > > The basic problems is this: > > You have more x-axis values than jcharts can print. So jcharts has to choose (with some > algorithm) which labels it should print and which not. > > But in some cases e.g. in time series certain labels make a lot more sense to the human observer > than others (e.g the start of each day). > > But it's not limited to time series. Let's say you have x-values from 0-873. Then a human viewer > would maybe prefer labels of 0, 100, 200 ... 800, 900 and not some mathematically correct but > "odd" numbers like 113, 226... > > And I looked for a possibility to control the labels that the jcharts algorithm should choose > for printing. > > > > Sven > > > > > > > > --- On Sun 09/21, Nathaniel G. Auvil < nat...@ya... > wrote: > > From: Nathaniel G. Auvil [mailto: nat...@ya...] > > To: jch...@li... > > Date: Sun, 21 Sep 2003 19:55:43 -0700 (PDT) > > Subject: Re: [jCharts-users] control of the x-axis labels > > > > <br>Time Series charts are not available in the current release of jCharts. There appears to be > some<br>demand for this type of chart as of late, so I am bumping it up on the priority list for > the next<br>release.<br><br><br><br>--- Sven Weber <sve...@ex...> wrote:<br>> <br>> > Hi,<br>> <br>> <br>> <br>> and first of all hello from a jcharts newbie.<br>> <br>> <br>> <br>> > I worked thru the jcharts examples and find jCharts is really easy to use, so thanx. :-)<br>> > <br>> Now I have my first question:<br>> <br>> I need to create time series charts. The data > usually consists of one value per 15 minutes. The<br>> charts should show a day, week or month > of the measurement data. <br>> <br>> So I have 96 values per day, 576 value per week and around > 2900 values per months.<br>> <br>> Now I can create a string from the time stamp of the value > and add that string to the x-axis<br>> labels, but so far I found no way to let jcharts know, > which x-axis labels should be printed and<br>> which not. E.g. if I create a "day chart" then it > would be ok to have a label printed at every<br>> full hour and maybe every half hour. If it's a > "week chart" then it would be ok to see time<br>> stamps from 12pm, 6am, 12am and 6pm of each > day, but not something like 3.45pm or 5.15am.<br>> <br>> So the basic problem is that I have too > much values so jcharts can not print each x-axis label,<br>> but I found no way to tell jcharts > which labels should be printed and which not!<br>> <br>> Is there a solution for my > problem?<br>> <br>> <br>> <br>> CU<br>> <br>> Sven<br>> <br>> <br>> <br>> <br>> <br>> <br>> > <br>> _______________________________________________<br>> Join Excite! - > http://www.excite.com<br>> The most personalized portal on the Web!<br>> <br>> <br>> > -------------------------------------------------------<br>> This sf.net email is sponsored > by:ThinkGeek<br>> Welcome to geek heaven.<br>> http://thinkgeek.com/sf<br>> > _______________________________________________<br>> jCharts-users mailing list<br>> > jCh...@li...<br>> > https://lists.sourceforge.net/lists/listinfo/jcharts-users<br><br><br>=====<br>http://nathaniel-auvil.blog-city.com/<br><br>__________________________________<br>Do > you Yahoo!?<br>Yahoo! SiteBuilder - Free, easy-to-use web site design > software<br>http://sitebuilder.yahoo.com<br><br><br>-------------------------------------------------------<br>This > sf.net email is sponsored by:ThinkGeek<br>Welcome to geek > heaven.<br>http://thinkgeek.com/sf<br>_______________________________________________<br>jCharts-users > mailing > list<br>jCh...@li...<br>https://lists.sourceforge.net/lists/listinfo/jcharts-users<br> > > _______________________________________________ > Join Excite! - http://www.excite.com > The most personalized portal on the Web! > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > 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: Sven W. <sve...@ex...> - 2003-09-22 19:04:32
|
thanx for the answer. I read that other thread about time series, but my problem has basically nothing to do with time series. The basic problems is this: You have more x-axis values than jcharts can print. So jcharts has to choose (with some algorithm) which labels it should print and which not. But in some cases e.g. in time series certain labels make a lot more sense to the human observer than others (e.g the start of each day). But it's not limited to time series. Let's say you have x-values from 0-873. Then a human viewer would maybe prefer labels of 0, 100, 200 ... 800, 900 and not some mathematically correct but "odd" numbers like 113, 226... And I looked for a possibility to control the labels that the jcharts algorithm should choose for printing. Sven --- On Sun 09/21, Nathaniel G. Auvil < nat...@ya... > wrote: From: Nathaniel G. Auvil [mailto: nat...@ya...] To: jch...@li... Date: Sun, 21 Sep 2003 19:55:43 -0700 (PDT) Subject: Re: [jCharts-users] control of the x-axis labels <br>Time Series charts are not available in the current release of jCharts. There appears to be some<br>demand for this type of chart as of late, so I am bumping it up on the priority list for the next<br>release.<br><br><br><br>--- Sven Weber <sve...@ex...> wrote:<br>> <br>> Hi,<br>> <br>> <br>> <br>> and first of all hello from a jcharts newbie.<br>> <br>> <br>> <br>> I worked thru the jcharts examples and find jCharts is really easy to use, so thanx. :-)<br>> <br>> Now I have my first question:<br>> <br>> I need to create time series charts. The data usually consists of one value per 15 minutes. The<br>> charts should show a day, week or month of the measurement data. <br>> <br>> So I have 96 values per day, 576 value per week and around 2900 values per months.<br>> <br>> Now I can create a string from the time stamp of the value and add that string to the x-axis<br>> labels, but so far I found no way to let jcharts know, which x-axis labels should be printed and<br>> which not. E.g. if I create a "day chart" then it would be ok to have a label printed at every<br>> full hour and maybe every half hour. If it's a "week chart" then it would be ok to see time<br>> stamps from 12pm, 6am, 12am and 6pm of each day, but not something like 3.45pm or 5.15am.<br>> <br>> So the basic problem is that I have too much values so jcharts can not print each x-axis label,<br>> but I found no way to tell jcharts which labels should be printed and which not!<br>> <br>> Is there a solution for my problem?<br>> <br>> <br>> <br>> CU<br>> <br>> Sven<br>> <br>> <br>> <br>> <br>> <br>> <br>> <br>> _______________________________________________<br>> Join Excite! - http://www.excite.com<br>> The most personalized portal on the Web!<br>> <br>> <br>> -------------------------------------------------------<br>> This sf.net email is sponsored by:ThinkGeek<br>> Welcome to geek heaven.<br>> http://thinkgeek.com/sf<br>> _______________________________________________<br>> jCharts-users mailing list<br>> jCh...@li...<br>> https://lists.sourceforge.net/lists/listinfo/jcharts-users<br><br><br>=====<br>http://nathaniel-auvil.blog-city.com/<br><br>__________________________________<br>Do you Yahoo!?<br>Yahoo! SiteBuilder - Free, easy-to-use web site design software<br>http://sitebuilder.yahoo.com<br><br><br>-------------------------------------------------------<br>This sf.net email is sponsored by:ThinkGeek<br>Welcome to geek heaven.<br>http://thinkgeek.com/sf<br>_______________________________________________<br>jCharts-users mailing list<br>jCh...@li...<br>https://lists.sourceforge.net/lists/listinfo/jcharts-users<br> _______________________________________________ Join Excite! - http://www.excite.com The most personalized portal on the Web! |
From: Nathaniel G. A. <nat...@ya...> - 2003-09-22 18:10:30
|
Yes, you do it the same way you would for the y-axis scale. http://jcharts.sourceforge.net/usersGuide/0.7/axisCharts.html#numberOfItemsOnYAxis --- "Lapinski, Michael (Research)" <lap...@cr...> wrote: > Hello, > > Is there a way to specify a range for the X Axis. For Exampel I > have data with values that range from 1-10 but id like the X axis > to range from 1-20. Is this possible? > > -thank you > -mtl > > > > > -------------------------------------------------- > Michael Lapinski > Computer Scientist > GE Research > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > 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: Lapinski, M. (Research) <lap...@cr...> - 2003-09-22 13:51:11
|
Hello, Is there a way to specify a range for the X Axis. For Exampel I have data with values that range from 1-10 but id like the X axis to range from 1-20. Is this possible? -thank you -mtl -------------------------------------------------- Michael Lapinski Computer Scientist GE Research |
From: Nathaniel G. A. <nat...@ya...> - 2003-09-22 02:56:14
|
Time Series charts are not available in the current release of jCharts. There appears to be some demand for this type of chart as of late, so I am bumping it up on the priority list for the next release. --- Sven Weber <sve...@ex...> wrote: > > Hi, > > > > and first of all hello from a jcharts newbie. > > > > I worked thru the jcharts examples and find jCharts is really easy to use, so thanx. :-) > > Now I have my first question: > > I need to create time series charts. The data usually consists of one value per 15 minutes. The > charts should show a day, week or month of the measurement data. > > So I have 96 values per day, 576 value per week and around 2900 values per months. > > Now I can create a string from the time stamp of the value and add that string to the x-axis > labels, but so far I found no way to let jcharts know, which x-axis labels should be printed and > which not. E.g. if I create a "day chart" then it would be ok to have a label printed at every > full hour and maybe every half hour. If it's a "week chart" then it would be ok to see time > stamps from 12pm, 6am, 12am and 6pm of each day, but not something like 3.45pm or 5.15am. > > So the basic problem is that I have too much values so jcharts can not print each x-axis label, > but I found no way to tell jcharts which labels should be printed and which not! > > Is there a solution for my problem? > > > > CU > > Sven > > > > > > > > _______________________________________________ > Join Excite! - http://www.excite.com > The most personalized portal on the Web! > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > 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: Sven W. <sve...@ex...> - 2003-09-21 23:25:02
|
Hi, and first of all hello from a jcharts newbie. I worked thru the jcharts examples and find jCharts is really easy to use, so thanx. :-) Now I have my first question: I need to create time series charts. The data usually consists of one value per 15 minutes. The charts should show a day, week or month of the measurement data. So I have 96 values per day, 576 value per week and around 2900 values per months. Now I can create a string from the time stamp of the value and add that string to the x-axis labels, but so far I found no way to let jcharts know, which x-axis labels should be printed and which not. E.g. if I create a "day chart" then it would be ok to have a label printed at every full hour and maybe every half hour. If it's a "week chart" then it would be ok to see time stamps from 12pm, 6am, 12am and 6pm of each day, but not something like 3.45pm or 5.15am. So the basic problem is that I have too much values so jcharts can not print each x-axis label, but I found no way to tell jcharts which labels should be printed and which not! Is there a solution for my problem? CU Sven _______________________________________________ Join Excite! - http://www.excite.com The most personalized portal on the Web! |