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: Nick C. <ni...@ch...> - 2004-09-01 04:12:57
|
Great to hear you using JCharts. Please ask your question on the list (which I have CC) so that everyone can help, and benefit from the answers. R, Nick ps. I personally have no JChart experience. Durand wrote: >Sir, > > > >I am using JCharts for a small scale US Army Web application > >proof-of-concept. > > > >I'm trying to show values on a line graph when using JCharts. > >I've checked the documentation; however, I did not see a > >way to add values. > > > >Do you know of a solution? > > > >thanks > > |
From: Nathaniel G. A. <nat...@ya...> - 2004-08-27 22:05:24
|
encodeJPEG13 is for legacy apps running on jdks up to and including 1.3 encodeJPEG uses the newer encoding methods in jdk 1.4+ encodeServlet is a helper which sets the mime type based on the encoding and encodes the image. take a look at the documentation + source for more info... --- Fredrik Liden <fl...@tr...> wrote: > Hi, > > I'm a bit confused about the different types of encodings. > What's the difference between encodeJPEG13 and the regular encodeJPEG > And what is the encodeServlet? what is the purpose of that one? > > Thanks! > > Fredrik > __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail |
From: Fredrik L. <fl...@tr...> - 2004-08-27 21:35:11
|
Hi, I'm a bit confused about the different types of encodings. What's the difference between encodeJPEG13 and the regular encodeJPEG And what is the encodeServlet? what is the purpose of that one? Thanks! Fredrik |
From: <jle...@ne...> - 2004-08-19 13:21:53
|
Hello, I solve my probleme of date time plot. Now it is an another problem My X axis have 7 days (for example) But ma String[]legend labels have more....with 7*24 date string... I want to only have seven day in the legend of the X axis... Not 12 day and someday are write twice I try something with DataAxisProperties dataAxisProperties= (DataAxisProperties) axisProperties.getXAxisProperties(); and after scale the axis... but i have a exception Is there anyone who have the same probleme with an Xaxis Thanks PS : Jcharts have many possibility thanks to the develloper great Job __________________________________________________________________ Switch to Netscape Internet Service. As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register Netscape. Just the Net You Need. New! Netscape Toolbar for Internet Explorer Search from anywhere on the Web and block those annoying pop-ups. Download now at http://channels.netscape.com/ns/search/install.jsp |
From: Nathaniel G. A. <nat...@ya...> - 2004-08-16 23:11:01
|
there are two things you could do: 1) alter the source to make the BasicStroke transient 2) change your code to create the chart on the client side. I would recommend this as it adheres to MVC. You should only gather the data on the server and let the client do the rendering. I will update the source so that the BasicStroke constants are transient. --- Greg Jablonski <gr...@dc...> wrote: > Hi, > > I have a problem with serialization or maybe I have wrong understanding > of where Chart object should be instantiated. I saw a post on 2004-05-31 > 06:05 (Re: java.io.NotSerializableException: > org.jCharts.properties.util.ChartFont) which solved some of my problems > but I still can't make it to work. Here is what I am doing. I have a > java client-server application which is using RMI for networking. So > what I am doing is creating a PieChart2D object on a server side and > then I am trying to send it over the network to a client. Then on a > client side I am converting it to an image and displaying it. Issue is > that when I make a request from client to server I get > java.io.NotSerializableException: java.awt.BasicStroke error. I looked > through the code and I see that PieChart2DProperties have been fixed to > use ChartStroke which is now serializable instead of BasicStroke but for > example LegendProperties still use BasicStroke. So my question, is that > a bug or I should create my charts on a client side. > > Thanks > Greg J > > > > ------------------------------------------------------- > SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media > 100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33 > Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift. > http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail |
From: Greg J. <gr...@dc...> - 2004-08-16 20:39:16
|
Hi, I have a problem with serialization or maybe I have wrong understanding of where Chart object should be instantiated. I saw a post on 2004-05-31 06:05 (Re: java.io.NotSerializableException: org.jCharts.properties.util.ChartFont) which solved some of my problems but I still can't make it to work. Here is what I am doing. I have a java client-server application which is using RMI for networking. So what I am doing is creating a PieChart2D object on a server side and then I am trying to send it over the network to a client. Then on a client side I am converting it to an image and displaying it. Issue is that when I make a request from client to server I get java.io.NotSerializableException: java.awt.BasicStroke error. I looked through the code and I see that PieChart2DProperties have been fixed to use ChartStroke which is now serializable instead of BasicStroke but for example LegendProperties still use BasicStroke. So my question, is that a bug or I should create my charts on a client side. Thanks Greg J |
From: Nathaniel G. A. <nat...@ya...> - 2004-08-12 13:19:43
|
Take a look in the source for: org.krysalis.jcharts.test.ScatterPlotTestDriver I have been and still am working on the new User Guide. --- jle...@ne... wrote: > jch...@li... wrote: > > Time serie doesn't matter. I can do something else for classify my data > But can i have a sample code of a simple scatter graph. Like the graphe in the web site... > In the user manual there is no example of scatter graph. > > Thanks > > >Send jCharts-users mailing list submissions to > > jch...@li... > > > >To subscribe or unsubscribe via the World Wide Web, visit > > https://lists.sourceforge.net/lists/listinfo/jcharts-users > >or, via email, send a message with subject or body 'help' to > > jch...@li... > > > >You can reach the person managing the list at > > jch...@li... > > > >When replying, please edit your Subject line so it is more specific > >than "Re: Contents of jCharts-users digest..." > > > > > >Today's Topics: > > > > 1. Code sample of scatter chart (jle...@ne...) > > 2. Code sample of scatter chart (jle...@ne...) > > 3. Re: Code sample of scatter chart (Nathaniel G. Auvil) > > > >--__--__-- > > > >Message: 1 > >Date: Wed, 11 Aug 2004 05:35:50 -0400 > >From: jle...@ne... > >To: jch...@li... > >Subject: [jCharts-users] Code sample of scatter chart > >Reply-To: jch...@li... > > > >Hello, > > > >Is there anybody who have a sample code of scatter chart. > > > >I want to plot a point chart with x axis sort by day/month/year h:min:s > >Do you see what i mean? > >So i think that i could use scatter chart to plot my data? > > > > > >Thanks for reply > > > > > >PS : Jcharts devellopper made a great job....Very good job > > > > > >__________________________________________________________________ > >Switch to Netscape Internet Service. > >As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register > > > >Netscape. Just the Net You Need. > > > >New! Netscape Toolbar for Internet Explorer > >Search from anywhere on the Web and block those annoying pop-ups. > >Download now at http://channels.netscape.com/ns/search/install.jsp > > > > > >--__--__-- > > > >Message: 2 > >Date: Wed, 11 Aug 2004 07:49:20 -0400 > >From: jle...@ne... > >To: jch...@li... > >Subject: [jCharts-users] Code sample of scatter chart > >Reply-To: jch...@li... > > > >Hello, > > > >Is there anybody who have a sample code of scatter chart. > > > >I want to plot a point chart with x axis sort by day/month/year h:min:s > >Do you see what i mean? > >So i think that i could use scatter chart to plot my data? > > > > > >Thanks for reply > > > >> > >>PS : Jcharts devellopper made a great job....Very good job > >> > >> > >>__________________________________________________________________ > >>Switch to Netscape Internet Service. > >>As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register > >> > >>Netscape. Just the Net You Need. > >> > >>New! Netscape Toolbar for Internet Explorer > >>Search from anywhere on the Web and block those annoying pop-ups. > >>Download now at http://channels.netscape.com/ns/search/install.jsp > >> > > > >__________________________________________________________________ > >Switch to Netscape Internet Service. > >As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register > > > >Netscape. Just the Net You Need. > > > >New! Netscape Toolbar for Internet Explorer > >Search from anywhere on the Web and block those annoying pop-ups. > >Download now at http://channels.netscape.com/ns/search/install.jsp > > > > > >--__--__-- > > > >Message: 3 > >Date: Wed, 11 Aug 2004 05:52:39 -0700 (PDT) > >From: "Nathaniel G. Auvil" <nat...@ya...> > >Subject: Re: [jCharts-users] Code sample of scatter chart > >To: jch...@li... > >Reply-To: jch...@li... > > > > > >a Time Series plot is not current available. > > > > > >--- jle...@ne... wrote: > > > >> Hello, > >> > >> Is there anybody who have a sample code of scatter chart. > >> > >> I want to plot a point chart with x axis sort by day/month/year h:min:s > >> Do you see what i mean? > >> So i think that i could use scatter chart to plot my data? > >> > >> > >> Thanks for reply > >> > >> > >> PS : Jcharts devellopper made a great job....Very good job > >> > >> > >> __________________________________________________________________ > >> Switch to Netscape Internet Service. > >> As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register > >> > >> Netscape. Just the Net You Need. > >> > >> New! Netscape Toolbar for Internet Explorer > >> Search from anywhere on the Web and block those annoying pop-ups. > >> Download now at http://channels.netscape.com/ns/search/install.jsp > >> > >> > >> ------------------------------------------------------- > >> SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media > >> 100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33 > >> Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift. > >> http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 > >> _______________________________________________ > >> jCharts-users mailing list > >> jCh...@li... > >> https://lists.sourceforge.net/lists/listinfo/jcharts-users > >> > > > > > >__________________________________________________ > >Do You Yahoo!? > >Tired of spam? Yahoo! Mail has the best spam protection around > >http://mail.yahoo.com > > > > > > > >--__--__-- > > > >_______________________________________________ > >jCharts-users mailing list > >jCh...@li... > >https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > > > >End of jCharts-users Digest > > > > __________________________________________________________________ > Switch to Netscape Internet Service. > As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register > > Netscape. Just the Net You Need. > > New! Netscape Toolbar for Internet Explorer > Search from anywhere on the Web and block those annoying pop-ups. > Download now at http://channels.netscape.com/ns/search/install.jsp > > > ------------------------------------------------------- > SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media > 100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33 > Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift. > http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail |
From: <jle...@ne...> - 2004-08-12 06:55:31
|
jch...@li... wrote: Time serie doesn't matter. I can do something else for classify my data But can i have a sample code of a simple scatter graph. Like the graphe in the web site... In the user manual there is no example of scatter graph. Thanks >Send jCharts-users mailing list submissions to > jch...@li... > >To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/jcharts-users >or, via email, send a message with subject or body 'help' to > jch...@li... > >You can reach the person managing the list at > jch...@li... > >When replying, please edit your Subject line so it is more specific >than "Re: Contents of jCharts-users digest..." > > >Today's Topics: > > 1. Code sample of scatter chart (jle...@ne...) > 2. Code sample of scatter chart (jle...@ne...) > 3. Re: Code sample of scatter chart (Nathaniel G. Auvil) > >--__--__-- > >Message: 1 >Date: Wed, 11 Aug 2004 05:35:50 -0400 >From: jle...@ne... >To: jch...@li... >Subject: [jCharts-users] Code sample of scatter chart >Reply-To: jch...@li... > >Hello, > >Is there anybody who have a sample code of scatter chart. > >I want to plot a point chart with x axis sort by day/month/year h:min:s >Do you see what i mean? >So i think that i could use scatter chart to plot my data? > > >Thanks for reply > > >PS : Jcharts devellopper made a great job....Very good job > > >__________________________________________________________________ >Switch to Netscape Internet Service. >As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register > >Netscape. Just the Net You Need. > >New! Netscape Toolbar for Internet Explorer >Search from anywhere on the Web and block those annoying pop-ups. >Download now at http://channels.netscape.com/ns/search/install.jsp > > >--__--__-- > >Message: 2 >Date: Wed, 11 Aug 2004 07:49:20 -0400 >From: jle...@ne... >To: jch...@li... >Subject: [jCharts-users] Code sample of scatter chart >Reply-To: jch...@li... > >Hello, > >Is there anybody who have a sample code of scatter chart. > >I want to plot a point chart with x axis sort by day/month/year h:min:s >Do you see what i mean? >So i think that i could use scatter chart to plot my data? > > >Thanks for reply > >> >>PS : Jcharts devellopper made a great job....Very good job >> >> >>__________________________________________________________________ >>Switch to Netscape Internet Service. >>As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register >> >>Netscape. Just the Net You Need. >> >>New! Netscape Toolbar for Internet Explorer >>Search from anywhere on the Web and block those annoying pop-ups. >>Download now at http://channels.netscape.com/ns/search/install.jsp >> > >__________________________________________________________________ >Switch to Netscape Internet Service. >As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register > >Netscape. Just the Net You Need. > >New! Netscape Toolbar for Internet Explorer >Search from anywhere on the Web and block those annoying pop-ups. >Download now at http://channels.netscape.com/ns/search/install.jsp > > >--__--__-- > >Message: 3 >Date: Wed, 11 Aug 2004 05:52:39 -0700 (PDT) >From: "Nathaniel G. Auvil" <nat...@ya...> >Subject: Re: [jCharts-users] Code sample of scatter chart >To: jch...@li... >Reply-To: jch...@li... > > >a Time Series plot is not current available. > > >--- jle...@ne... wrote: > >> Hello, >> >> Is there anybody who have a sample code of scatter chart. >> >> I want to plot a point chart with x axis sort by day/month/year h:min:s >> Do you see what i mean? >> So i think that i could use scatter chart to plot my data? >> >> >> Thanks for reply >> >> >> PS : Jcharts devellopper made a great job....Very good job >> >> >> __________________________________________________________________ >> Switch to Netscape Internet Service. >> As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register >> >> Netscape. Just the Net You Need. >> >> New! Netscape Toolbar for Internet Explorer >> Search from anywhere on the Web and block those annoying pop-ups. >> Download now at http://channels.netscape.com/ns/search/install.jsp >> >> >> ------------------------------------------------------- >> SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media >> 100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33 >> Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift. >> http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 >> _______________________________________________ >> jCharts-users mailing list >> jCh...@li... >> https://lists.sourceforge.net/lists/listinfo/jcharts-users >> > > >__________________________________________________ >Do You Yahoo!? >Tired of spam? Yahoo! Mail has the best spam protection around >http://mail.yahoo.com > > > >--__--__-- > >_______________________________________________ >jCharts-users mailing list >jCh...@li... >https://lists.sourceforge.net/lists/listinfo/jcharts-users > > >End of jCharts-users Digest > __________________________________________________________________ Switch to Netscape Internet Service. As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register Netscape. Just the Net You Need. New! Netscape Toolbar for Internet Explorer Search from anywhere on the Web and block those annoying pop-ups. Download now at http://channels.netscape.com/ns/search/install.jsp |
From: Nathaniel G. A. <nat...@ya...> - 2004-08-11 12:52:52
|
a Time Series plot is not current available. --- jle...@ne... wrote: > Hello, > > Is there anybody who have a sample code of scatter chart. > > I want to plot a point chart with x axis sort by day/month/year h:min:s > Do you see what i mean? > So i think that i could use scatter chart to plot my data? > > > Thanks for reply > > > PS : Jcharts devellopper made a great job....Very good job > > > __________________________________________________________________ > Switch to Netscape Internet Service. > As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register > > Netscape. Just the Net You Need. > > New! Netscape Toolbar for Internet Explorer > Search from anywhere on the Web and block those annoying pop-ups. > Download now at http://channels.netscape.com/ns/search/install.jsp > > > ------------------------------------------------------- > SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media > 100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33 > Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift. > http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: <jle...@ne...> - 2004-08-11 11:49:33
|
Hello, Is there anybody who have a sample code of scatter chart. I want to plot a point chart with x axis sort by day/month/year h:min:s Do you see what i mean? So i think that i could use scatter chart to plot my data? Thanks for reply > >PS : Jcharts devellopper made a great job....Very good job > > >__________________________________________________________________ >Switch to Netscape Internet Service. >As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register > >Netscape. Just the Net You Need. > >New! Netscape Toolbar for Internet Explorer >Search from anywhere on the Web and block those annoying pop-ups. >Download now at http://channels.netscape.com/ns/search/install.jsp > __________________________________________________________________ Switch to Netscape Internet Service. As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register Netscape. Just the Net You Need. New! Netscape Toolbar for Internet Explorer Search from anywhere on the Web and block those annoying pop-ups. Download now at http://channels.netscape.com/ns/search/install.jsp |
From: <jle...@ne...> - 2004-08-11 09:36:08
|
Hello, Is there anybody who have a sample code of scatter chart. I want to plot a point chart with x axis sort by day/month/year h:min:s Do you see what i mean? So i think that i could use scatter chart to plot my data? Thanks for reply PS : Jcharts devellopper made a great job....Very good job __________________________________________________________________ Switch to Netscape Internet Service. As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register Netscape. Just the Net You Need. New! Netscape Toolbar for Internet Explorer Search from anywhere on the Web and block those annoying pop-ups. Download now at http://channels.netscape.com/ns/search/install.jsp |
From: Nathaniel G. A. <nat...@ya...> - 2004-08-06 13:04:00
|
There is a method on the DataAxisProperties Object which you can control the range by specifying a minimum and increment. You need to also change the rounding value to include smaller numbers. --- Chris Hoffmann <hof...@cs...> wrote: > I know this must be simple to do, but I haven't been able to come up > with the proper incantation yet. I want to set an explicit range for the > y-axis of my bar chart, say from 0.0 to 1.5, regardless of the range > of the data values (assuming all values are within that range). > > Although my data points are all either zero or around 1.0, the only > ranges I've been able to get jChart to produce are 0..4 and 0..1, the > latter truncating any bars that are above 1.0. > > Thanks, > Chris > -- > Chris Hoffmann -- Dept. of Computer Science/UMass at Amherst > http://www-ali.cs.umass.edu/~hoffmann > > > ------------------------------------------------------- > This SF.Net email is sponsored by OSTG. Have you noticed the changes on > Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now, > one more big change to announce. We are now OSTG- Open Source Technology > Group. Come see the changes on the new OSTG site. www.ostg.com > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > __________________________________ Do you Yahoo!? Read only the mail you want - Yahoo! Mail SpamGuard. http://promotions.yahoo.com/new_mail |
From: Chris H. <hof...@cs...> - 2004-08-05 16:38:45
|
I know this must be simple to do, but I haven't been able to come up with the proper incantation yet. I want to set an explicit range for the y-axis of my bar chart, say from 0.0 to 1.5, regardless of the range of the data values (assuming all values are within that range). Although my data points are all either zero or around 1.0, the only ranges I've been able to get jChart to produce are 0..4 and 0..1, the latter truncating any bars that are above 1.0. Thanks, Chris -- Chris Hoffmann -- Dept. of Computer Science/UMass at Amherst http://www-ali.cs.umass.edu/~hoffmann |
From: Nathaniel G. A. <nat...@ya...> - 2004-07-28 12:59:34
|
you could use an applet to display a chart. Take a look at: http://jcharts.krysalis.org/userGuide/exportingImages.html#Charts+In+Swing+Apps Or you could use a Servlet. Take a look at the .war file that comes with the download. --- "Mir M. Mirhashimali" <mh...@ri...> wrote: > Hi, > > I just downloaded Jcharts and was wondering how can i display a web page > with a bar chart. I am using Oracle Application Server and pl/sql. In > past i had used some Java classes with <applet ..> tag to display > charts. can i do the same with Jcharts, if yes how, sample code will be > very helpful. Since i am not a Java person i am not sure how to use it. > > any help is appreciated. > > thanks > Mir > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! http://promotions.yahoo.com/new_mail |
From: Mir M. M. <mh...@ri...> - 2004-07-27 20:35:43
|
Hi, I just downloaded Jcharts and was wondering how can i display a web page with a bar chart. I am using Oracle Application Server and pl/sql. In past i had used some Java classes with <applet ..> tag to display charts. can i do the same with Jcharts, if yes how, sample code will be very helpful. Since i am not a Java person i am not sure how to use it. any help is appreciated. thanks Mir |
From: Nathaniel G. A. <nat...@ya...> - 2004-07-15 01:10:23
|
Take a look at the example of how jCharts is used in Jasper Reports. --- Lora Lantzy <Lor...@sa...> wrote: > I am trying to get one of my charts into a pdf file. I am able to do so with the > JPEGEncoder.encode method and setting the output stream appropriately; however, I am unable to > have anything else in the pdf. I am wondering if the chart can be rendered in another way. > Specifically I would need something that returns an image instead of outputting the chart > directly. Has anyone ever had this problem? Any help would be appreciated! > > Thank you, > Lora Lantzy > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_idG21&alloc_id040&op=click > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail |
From: Lora L. <Lor...@sa...> - 2004-07-14 19:45:14
|
I am trying to get one of my charts into a pdf file. I am able to do so = with the JPEGEncoder.encode method and setting the output stream = appropriately; however, I am unable to have anything else in the pdf. I = am wondering if the chart can be rendered in another way. Specifically = I would need something that returns an image instead of outputting the = chart directly. Has anyone ever had this problem? Any help would be = appreciated! Thank you, Lora Lantzy |
From: Nathaniel G. A. <nat...@ya...> - 2004-07-02 12:54:25
|
looks like the jCharts.jar is not on your classpath. --- "Di Giannantonio, Pino" <PD...@ap...> wrote: > Hi, > > I've an application that uses jCharts-0.7.5; it works correctly on > Tomcat4.1.30 with j2sdk1.4.2_05 on Windows and Linux . > I've deployed this application on a SUN Sparc 64 bit with Solaris 8, but > the application doesn't start because I receive an error in the init of > jCharts. > > This is the error: > > Logs: Tomcat (console: > > 2004-07-01 12:38:53 StandardContext[/casiscenter]: Servlet /casiscenter > threw load() exception > javax.servlet.ServletException: Servlet.init() for servlet casiscenter > threw exception > at > org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.jav > a:963) > at > org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:823) > at > org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.j > ava:3420) > at > org.apache.catalina.core.StandardContext.start(StandardContext.java:3608 > ) > at > org.apache.catalina.core.StandardHostDeployer.start(StandardHostDeployer > .java:629) > at > org.apache.catalina.core.StandardHost.start(StandardHost.java:897) > at > org.apache.catalina.servlets.ManagerServlet.start(ManagerServlet.java:11 > 05) > at > org.apache.catalina.servlets.HTMLManagerServlet.start(HTMLManagerServlet > .java:555) > at > org.apache.catalina.servlets.HTMLManagerServlet.doGet(HTMLManagerServlet > .java:157) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica > tionFilterChain.java:247) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt > erChain.java:193) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv > e.java:256) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:643) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 > 80) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv > e.java:191) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:643) > at > org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authenticator > Base.java:551) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:641) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 > 80) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardContext.invoke(StandardContext.java:241 > 5) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java > :180) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:643) > at > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa > lve.java:171) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:641) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java > :172) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:641) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 > 80) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve. > java:174) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:643) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 > 80) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:59 > 4) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC > onnection(Http11Protocol.java:392) > at > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:56 > 5) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool > .java:619) > at java.lang.Thread.run(Thread.java:534) > ----- Root Cause ----- > java.lang.NoClassDefFoundError > at org.jCharts.properties.Properties.<clinit>(Unknown Source) > at > be.aprico.casis.center.plugins.CasisASPlugin.initGraph(CasisASPlugin.jav > a:105) > at > be.aprico.casis.center.plugins.CasisASPlugin.init(CasisASPlugin.java:73) > at > org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.j > ava:1158) > at > org.apache.struts.action.ActionServlet.init(ActionServlet.java:473) > at javax.servlet.GenericServlet.init(GenericServlet.java:256) > at > org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.jav > a:935) > at > org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:823) > at > org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.j > ava:3420) > at > org.apache.catalina.core.StandardContext.start(StandardContext.java:3608 > ) > at > org.apache.catalina.core.StandardHostDeployer.start(StandardHostDeployer > .java:629) > at > org.apache.catalina.core.StandardHost.start(StandardHost.java:897) > at > org.apache.catalina.servlets.ManagerServlet.start(ManagerServlet.java:11 > 05) > at > org.apache.catalina.servlets.HTMLManagerServlet.start(HTMLManagerServlet > .java:555) > at > org.apache.catalina.servlets.HTMLManagerServlet.doGet(HTMLManagerServlet > .java:157) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica > tionFilterChain.java:247) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt > erChain.java:193) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv > e.java:256) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:643) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 > 80) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv > e.java:191) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:643) > at > org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authenticator > Base.java:551) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:641) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 > 80) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardContext.invoke(StandardContext.java:241 > 5) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java > :180) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:643) > at > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa > lve.java:171) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:641) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java > :172) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:641) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 > 80) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve. > java:174) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i > nvokeNext(StandardPipeline.java:643) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 > 80) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:59 > 4) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC > onnection(Http11Protocol.java:392) > at > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:56 > 5) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool > .java:619) > at java.lang.Thread.run(Thread.java:534) > > This is my code : > > private void initGraph(ServletContext oSContext) > { > LegendProperties legendProperties = new LegendProperties(); > ChartProperties chartProperties = new ChartProperties(); > AxisProperties axisProperties = new AxisProperties(false); > ClusteredBarChartProperties clusteredBarChartProperties = new > ClusteredBarChartProperties(); > ChartFont axisScaleFont = new ChartFont(new Font("Trebuchet MS", > 0, 10), Color.black); > > axisProperties.getXAxisProperties().setScaleChartFont(axisScaleFont); > > axisProperties.getYAxisProperties().setScaleChartFont(axisScaleFont); > ChartFont axisTitleFont = new ChartFont(new Font("Trebuchet MS", > 0, 10), Color.black); > > axisProperties.getXAxisProperties().setTitleChartFont(axisTitleFont); > > axisProperties.getYAxisProperties().setTitleChartFont(axisTitleFont); > legendProperties.setFont(new Font("Trebuchet MS", 0, 10)); > legendProperties.setFontPaint(new Color(64, 64, 64)); > legendProperties.setChartPadding(0); > legendProperties.setBorderStroke(ChartStroke.DEFAULT_ZERO_LINE); > oSContext.setAttribute("legendProperties", legendProperties); > oSContext.setAttribute("axisProperties", axisProperties); > oSContext.setAttribute("chartProperties", chartProperties); > oSContext.setAttribute("barChartProperties", > clusteredBarChartProperties); > } > > Is there a way to resolve this problem in order to make jCharts work > properly under Solaris? > If you could supply me with some information I would be more than > thankful...;-) > > Thank you in advance > > Yours sincerely > > Giuseppe. > > __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! http://promotions.yahoo.com/new_mail |
From: Di G. P. <PD...@ap...> - 2004-07-02 08:50:14
|
Hi, I've an application that uses jCharts-0.7.5; it works correctly on Tomcat4.1.30 with j2sdk1.4.2_05 on Windows and Linux . I've deployed this application on a SUN Sparc 64 bit with Solaris 8, but the application doesn't start because I receive an error in the init of jCharts. This is the error: Logs: Tomcat (console: 2004-07-01 12:38:53 StandardContext[/casiscenter]: Servlet /casiscenter threw load() exception javax.servlet.ServletException: Servlet.init() for servlet casiscenter threw exception at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.jav a:963) at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:823) at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.j ava:3420) at org.apache.catalina.core.StandardContext.start(StandardContext.java:3608 ) at org.apache.catalina.core.StandardHostDeployer.start(StandardHostDeployer .java:629) at org.apache.catalina.core.StandardHost.start(StandardHost.java:897) at org.apache.catalina.servlets.ManagerServlet.start(ManagerServlet.java:11 05) at org.apache.catalina.servlets.HTMLManagerServlet.start(HTMLManagerServlet .java:555) at org.apache.catalina.servlets.HTMLManagerServlet.doGet(HTMLManagerServlet .java:157) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv e.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv e.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authenticator Base.java:551) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:241 5) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java :180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa lve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java :172) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve. java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:59 4) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC onnection(Http11Protocol.java:392) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:56 5) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool .java:619) at java.lang.Thread.run(Thread.java:534) ----- Root Cause ----- java.lang.NoClassDefFoundError at org.jCharts.properties.Properties.<clinit>(Unknown Source) at be.aprico.casis.center.plugins.CasisASPlugin.initGraph(CasisASPlugin.jav a:105) at be.aprico.casis.center.plugins.CasisASPlugin.init(CasisASPlugin.java:73) at org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.j ava:1158) at org.apache.struts.action.ActionServlet.init(ActionServlet.java:473) at javax.servlet.GenericServlet.init(GenericServlet.java:256) at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.jav a:935) at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:823) at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.j ava:3420) at org.apache.catalina.core.StandardContext.start(StandardContext.java:3608 ) at org.apache.catalina.core.StandardHostDeployer.start(StandardHostDeployer .java:629) at org.apache.catalina.core.StandardHost.start(StandardHost.java:897) at org.apache.catalina.servlets.ManagerServlet.start(ManagerServlet.java:11 05) at org.apache.catalina.servlets.HTMLManagerServlet.start(HTMLManagerServlet .java:555) at org.apache.catalina.servlets.HTMLManagerServlet.doGet(HTMLManagerServlet .java:157) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica tionFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt erChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv e.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv e.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authenticator Base.java:551) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:241 5) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java :180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVa lve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java :172) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve. java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.i nvokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:4 80) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:59 4) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC onnection(Http11Protocol.java:392) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:56 5) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool .java:619) at java.lang.Thread.run(Thread.java:534) This is my code : private void initGraph(ServletContext oSContext) { LegendProperties legendProperties = new LegendProperties(); ChartProperties chartProperties = new ChartProperties(); AxisProperties axisProperties = new AxisProperties(false); ClusteredBarChartProperties clusteredBarChartProperties = new ClusteredBarChartProperties(); ChartFont axisScaleFont = new ChartFont(new Font("Trebuchet MS", 0, 10), Color.black); axisProperties.getXAxisProperties().setScaleChartFont(axisScaleFont); axisProperties.getYAxisProperties().setScaleChartFont(axisScaleFont); ChartFont axisTitleFont = new ChartFont(new Font("Trebuchet MS", 0, 10), Color.black); axisProperties.getXAxisProperties().setTitleChartFont(axisTitleFont); axisProperties.getYAxisProperties().setTitleChartFont(axisTitleFont); legendProperties.setFont(new Font("Trebuchet MS", 0, 10)); legendProperties.setFontPaint(new Color(64, 64, 64)); legendProperties.setChartPadding(0); legendProperties.setBorderStroke(ChartStroke.DEFAULT_ZERO_LINE); oSContext.setAttribute("legendProperties", legendProperties); oSContext.setAttribute("axisProperties", axisProperties); oSContext.setAttribute("chartProperties", chartProperties); oSContext.setAttribute("barChartProperties", clusteredBarChartProperties); } Is there a way to resolve this problem in order to make jCharts work properly under Solaris? If you could supply me with some information I would be more than thankful...;-) Thank you in advance Yours sincerely Giuseppe. |
From: Sudheer G. <sgu...@ip...> - 2004-06-25 20:10:39
|
Hi Currently, there is a way to set the GRID lines in a chart. Is there a way to set the background color of the area where the GRID lines are being displayed? =20 Thanks -Sudheer |
From: <kar...@bt...> - 2004-06-23 19:11:26
|
Hi there, I am trying to create a 3D pie chart=20 I was wondering if I could=20 1. reduce the amount of space in and around the actual pie chart , there Seems to be a lot of space around the pie chart itself. 2. Also sometimes the pie chart gets saved as a bmp only , any ideas why that is ... Thanks Karan |
From: Nathaniel G. A. <nat...@ya...> - 2004-06-23 15:50:54
|
This is not in the codebase as of yet. It might make it into 1.0. As a ework around, you could set the values to be the percentages. For example if your data set had 5,5,10 you could change that to be the percentage values of: 25,25,50 --- Travis Reeder <tra...@ec...> wrote: > Anyway to put percentages on pie charts? > > Travis > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > __________________________________ Do you Yahoo!? Yahoo! Mail is new and improved - Check it out! http://promotions.yahoo.com/new_mail |
From: Travis R. <tra...@ec...> - 2004-06-23 14:36:43
|
Anyway to put percentages on pie charts? Travis |
From: Nathaniel G. A. <nat...@ya...> - 2004-06-18 18:05:50
|
Singha, If you are looking for the quickest response, do not email me or any of the project committers directly; you should email the Users mail list. I will not answer emails directed at me personally in the future. What if i am on vacation or unreachable for a period of time? I am not sure I understand your problem. --- Singha Amit <ks...@ho...> wrote: > Sir, > > I am using jCharts in my intranet application, i am using JDBC connection to > extract data from database, but not able to assign values dynamically, can > you please help me, sending you the sample code: > > Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); > connection=DriverManager.getConnection("jdbc:odbc:TEST","amit","nivedita > ); > statement=connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE > ResultSet.CONCUR_READ_ONLY); > ResultSet rs; > int count=0; > rs=statement.executeQuery("SELECT * FROM SALES"); > > rs.last(); > > int MAX_ROW=rs.getRow; > > System.out.println(MAX_ROW); > String a=null; > String b=null; > > String[] xAxisLabels=new String[MAX_ROW]; > double[][] data=new double[MAX_ROW][MAX_ROW]; > > while(count<=MAX_ROW) > { > xAxisLabels[count]=rs.getString[1]; > data[count][count]=rs.getDouble[2]; > count++; > } > > thanx > amit > > __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! http://promotions.yahoo.com/new_mail |
From: Nathan F. <nf...@Wo...> - 2004-06-16 17:11:22
|
I have often though it might be useful for the case of long names to turn the legend off, and make some spiffy html to hold your own legend, that looks like it is in the chart. This gives you all the control of css or whatever tabley structure one could want for a legend. Nathan -----Original Message----- From: kar...@bt... [mailto:kar...@bt...] Sent: Wednesday, June 16, 2004 11:48 AM To: jch...@li... Subject: [jCharts-users] Pie Chart Hi , I had another query !!!! I am making a Pie chart via a servlet, and wanted to ask if its possible to overlap the labels to the next line . The problem I am having is the Pie chart doesn't display all the labels as they are quite wordy Eg a label could be "sfs004.solutions.vbc.com" Any ideas? Thanks Karan Oberai BT Westside | Apsley | Hemel Hempstead Tel: +44 20 7322 4877 NOTICE: This message and any information, files or materials sent with may contain confidential and proprietary information or material of the sender, the recipient(s) or others, or information or material covered by the attorney-client privilege, attorney work product privilege, or other applicable privilege. If you are not a named recipient or if you have received this message in error, please notify the sender immediately by return email, delete this email from your system, and do not disclose the contents of this transmission to any other person, use this transmission or any of its contents for any purpose, or further copy its contents. Persons communicating with Works Operating Company, any of its affiliated companies, or any of their respective representatives by electronic means are advised and agree that such communications are reviewed for harmful or objectionable content or material. |