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-04-15 18:01:20
|
--- "Nathaniel G. Auvil" <nat...@ya...> wrote: > Date: Tue, 15 Apr 2003 10:59:20 -0700 (PDT) > From: "Nathaniel G. Auvil" <nat...@ya...> > Subject: Re: [jCharts-users] Swing app question > To: fra...@ag... > > > hi. > > Your problem is the Graphics2D Object coming from your JPanel is null. This is because your app > is not visible on the screen so the jvm does not create the underlying graphics components. To > fix this, simply call the 'setVisible( true );' method on your JFrame before you render the > chart. > > > > > --- fra...@ag... wrote: > > Hi, > > > > I have only downloaded jCharts today, so my experience with package is not great. I really > want > > to use the package to embed charting components in Swing applications. Within the distribution > > I found an example of a Swing PieChart. I tried to follow that example to try and reconstruct > > my own Swing bar chart based on the distributions bar chart example. > > > > The code is given below. All seems to work, the frame gets drawn but finally I get an > exception > > when the "axisChart.render()" method is called: > > > > $ source runharness > > /cygdrive/d/mpowerdem/src/wdiscovery > > java.lang.NullPointerException > > at org.jCharts.Chart.render(Unknown Source) > > at com.agilent.wdiscovery.MainFrame.initComponents(MainFrame.java:81) > > at com.agilent.wdiscovery.MainFrame.<init>(MainFrame.java:34) > > at com.agilent.wdiscovery.LaunchWirelessApp.<init>(LaunchWirelessApp.jav > > a:20) > > at com.agilent.wdiscovery.LaunchWirelessApp.main(LaunchWirelessApp.java: > > 49) > > > > I have tried other things in despair but I'm not getting very far. Can anyone help or point > > me to some other Swing based examples? > > > > Thanks, > > > > Francisco > > > > > -------------------------------------------------------------------------------------------------------------------------------------- > > > > package com.agilent.wdiscovery; > > > > import org.jCharts.chartData.ChartDataException; > > import org.jCharts.properties.*; > > import org.jCharts.chartData.*; > > import org.jCharts.axisChart.*; > > import org.jCharts.types.*; > > import org.jCharts.imageMap.*; > > > > import java.awt.*; > > import java.awt.event.*; > > import java.awt.image.*; > > import javax.swing.*; > > > > /** > > * <p>Title: </p> > > * <p>Description: </p> > > * <p>Copyright: Copyright (c) 2003</p> > > * <p>Company: </p> > > * @author unascribed > > * @version 1.0 > > */ > > > > public class MainFrame extends JFrame { > > private JPanel contentPane; > > private BorderLayout borderLayout1 = new BorderLayout(); > > private JPanel jPanel1 = new JPanel(true); > > > > //Construct the frame > > public MainFrame() { > > enableEvents(AWTEvent.WINDOW_EVENT_MASK); > > try { > > jbInit(); > > initComponents(); > > } > > catch(Exception e) { > > e.printStackTrace(); > > } > > } > > //Component initialization > > private void jbInit() throws Exception { > > //setIconImage(Toolkit.getDefaultToolkit().createImage(MainFrame.class.getResource("[Your > > Icon]"))); > > contentPane = (JPanel) this.getContentPane(); > > contentPane.setLayout(borderLayout1); > > this.setSize(new Dimension(400, 300)); > > this.setTitle("802.11 Wireless Discovery"); > > jPanel1.setBorder(BorderFactory.createEtchedBorder()); > > contentPane.add(jPanel1, BorderLayout.CENTER); > > } > > //Overridden so we can exit when window is closed > > protected void processWindowEvent(WindowEvent e) { > > super.processWindowEvent(e); > > if (e.getID() == WindowEvent.WINDOW_CLOSING) { > > System.exit(0); > > } > > } > > > > private void initComponents() throws ChartDataException, PropertyException { > > String[] xAxisLabels= { "1998", "1999", "2000", "2001", "2002", "2003", "2004" }; > > String xAxisTitle= "Years"; > > String yAxisTitle= "Problems"; > > String title= "Micro$oft at Work"; > > DataSeries dataSeries = new DataSeries( xAxisLabels, xAxisTitle, yAxisTitle, title ); > > > > double[][] data= new double[][]{ { 250, 45, -36, 66, 145, 80, 55 } }; > > String[] legendLabels= { "Bugs" }; > > Paint[] paints= new Paint[]{ Color.blue.darker() }; > > BarChartProperties barChartProperties= new BarChartProperties(); > > AxisChartDataSet axisChartDataSet= new AxisChartDataSet( data, legendLabels, paints, > > ChartType.BAR, barChartProperties ); > > dataSeries.addIAxisPlotDataSet( axisChartDataSet ); > > > > ChartProperties chartProperties= new ChartProperties(); > > > > //---to make this plot horizontally, pass true to the AxisProperties Constructor > > //AxisProperties axisProperties= new AxisProperties( true ); > > AxisProperties axisProperties= new AxisProperties(); > > LegendProperties legendProperties= new LegendProperties(); > > AxisChart axisChart= new AxisChart( dataSeries, chartProperties, axisProperties, > > legendProperties, 200, 200 ); > > > > axisChart.setGraphics2D( (Graphics2D) this.jPanel1.getGraphics() ); > > axisChart.render(); > > } > > } > > > > > > ------------------------------------------------------- > > 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! Search - Faster. Easier. Bingo > http://search.yahoo.com > ===== __________________________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo http://search.yahoo.com |
From: <fra...@ag...> - 2003-04-15 15:20:58
|
Hi, I have only downloaded jCharts today, so my experience with package is not great. I really want to use the package to embed charting components in Swing applications. Within the distribution I found an example of a Swing PieChart. I tried to follow that example to try and reconstruct my own Swing bar chart based on the distributions bar chart example. The code is given below. All seems to work, the frame gets drawn but finally I get an exception when the "axisChart.render()" method is called: $ source runharness /cygdrive/d/mpowerdem/src/wdiscovery java.lang.NullPointerException at org.jCharts.Chart.render(Unknown Source) at com.agilent.wdiscovery.MainFrame.initComponents(MainFrame.java:81) at com.agilent.wdiscovery.MainFrame.<init>(MainFrame.java:34) at com.agilent.wdiscovery.LaunchWirelessApp.<init>(LaunchWirelessApp.jav a:20) at com.agilent.wdiscovery.LaunchWirelessApp.main(LaunchWirelessApp.java: 49) I have tried other things in despair but I'm not getting very far. Can anyone help or point me to some other Swing based examples? Thanks, Francisco -------------------------------------------------------------------------------------------------------------------------------------- package com.agilent.wdiscovery; import org.jCharts.chartData.ChartDataException; import org.jCharts.properties.*; import org.jCharts.chartData.*; import org.jCharts.axisChart.*; import org.jCharts.types.*; import org.jCharts.imageMap.*; import java.awt.*; import java.awt.event.*; import java.awt.image.*; import javax.swing.*; /** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: </p> * @author unascribed * @version 1.0 */ public class MainFrame extends JFrame { private JPanel contentPane; private BorderLayout borderLayout1 = new BorderLayout(); private JPanel jPanel1 = new JPanel(true); //Construct the frame public MainFrame() { enableEvents(AWTEvent.WINDOW_EVENT_MASK); try { jbInit(); initComponents(); } catch(Exception e) { e.printStackTrace(); } } //Component initialization private void jbInit() throws Exception { //setIconImage(Toolkit.getDefaultToolkit().createImage(MainFrame.class.getResource("[Your Icon]"))); contentPane = (JPanel) this.getContentPane(); contentPane.setLayout(borderLayout1); this.setSize(new Dimension(400, 300)); this.setTitle("802.11 Wireless Discovery"); jPanel1.setBorder(BorderFactory.createEtchedBorder()); contentPane.add(jPanel1, BorderLayout.CENTER); } //Overridden so we can exit when window is closed protected void processWindowEvent(WindowEvent e) { super.processWindowEvent(e); if (e.getID() == WindowEvent.WINDOW_CLOSING) { System.exit(0); } } private void initComponents() throws ChartDataException, PropertyException { String[] xAxisLabels= { "1998", "1999", "2000", "2001", "2002", "2003", "2004" }; String xAxisTitle= "Years"; String yAxisTitle= "Problems"; String title= "Micro$oft at Work"; DataSeries dataSeries = new DataSeries( xAxisLabels, xAxisTitle, yAxisTitle, title ); double[][] data= new double[][]{ { 250, 45, -36, 66, 145, 80, 55 } }; String[] legendLabels= { "Bugs" }; Paint[] paints= new Paint[]{ Color.blue.darker() }; BarChartProperties barChartProperties= new BarChartProperties(); AxisChartDataSet axisChartDataSet= new AxisChartDataSet( data, legendLabels, paints, ChartType.BAR, barChartProperties ); dataSeries.addIAxisPlotDataSet( axisChartDataSet ); ChartProperties chartProperties= new ChartProperties(); //---to make this plot horizontally, pass true to the AxisProperties Constructor //AxisProperties axisProperties= new AxisProperties( true ); AxisProperties axisProperties= new AxisProperties(); LegendProperties legendProperties= new LegendProperties(); AxisChart axisChart= new AxisChart( dataSeries, chartProperties, axisProperties, legendProperties, 200, 200 ); axisChart.setGraphics2D( (Graphics2D) this.jPanel1.getGraphics() ); axisChart.render(); } } |
From: Nathaniel G. A. <nat...@ya...> - 2003-04-13 18:37:18
|
Fixes: * Horizontal Plots not starting the ticks at the y-axis, were offset. This was because some code for the next release accidently was inserted into the code base. * Code accidentally added which caused the above bug, has: Area, Line, and, Point, charts plot start along the y-axis rather than offset, so those plots fill the entire plot area. ===== __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more http://tax.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-04-13 17:49:08
|
there is a bug in the release. We will do another release to fix this today. Sorry about that. --- ¾çÁ¤ÈÆ <pu...@ha...> wrote: --------------------------------- p {margin-top:0px;margin-bottom:0px;} Hello. I'am student and I study jChart. I want to use Horizontal Plots but I can't. Can you tell me how to shift Horizontal Labels and Ticks? Attach 2 Images. Image1. Now Situation.(jchart.jpg) Image2. Hope to be.(h_jchart.jpg) Please help. Thank you. "¿ì¸® ÀÎÅͳÝ, Daum" http://www.daum.net ¡ºÆò»ý¾²´Â ¹«·á ÇѸÞÀϳݡ» ÇÁ¸®¹Ì¾ö ¸ÞÀÏ ½áº¸¼Ì¾î¿ä? 6°¡Áö ½ºÅ²+¿ë·®È®Àå+¥á ³ª¸¸ÀÇ ¸ÂÃã ¸ÞÀÏ! ÇѸÞÀÏ³Ý ½ºÆÔÁ¦·Î ½Ã½ºÅÛ ½ºÆÔ ¾ø´Â ÆíÁöÇÔ! ÇѸÞÀÏ³Ý ÆíÁöÇÔ! > ATTACHMENT part 2 image/pjpeg name=jchart.jpg > ATTACHMENT part 3 image/pjpeg name=h_jchart.jpg ===== __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more http://tax.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-04-11 14:11:02
|
it appears there is some code in the 0.7.0 source which is for the next release, namely code which starts the plot for Area, line, etc..., that starts the plot at the y axis rather than offsetting it. if you need a quick fix: take a look at the: deriveAxisValues() method in AxisChart.java /****************************************************************************************** * *****************************************************************************************/ protected void deriveAxisValues() { this.xAxis.computeLabelFilter(); this.xAxis.computeShouldTickStartAtYAxis( this.iAxisDataSeries, this.axisProperties.getXAxisProperties() ); make it so the call to: this.xAxis.computeShouldTickStartAtYAxis(...) so it is the second line in the method as above. --- jy...@fr... wrote: > Of course. > > En réponse à "Nathaniel G. Auvil" <nat...@ya...>: > > > > > can you attach an image of the chart? > > > > > > > > --- jy...@fr... wrote: > > > Hi Nathaniel, > > > > > > First of all, congratulations for your job on jCharts project, it's > > very > > > interesting. > > > > > > I write you bc I have a little pb that I don't understand. I installed > > the > > > simpleDemo on my tomcat server and when I launch the > > > HorizontalBarImageMapServlet all is fine. But If I insert the > > *exactly* same > > > servlet into my project, displaying in *exactly* the same jsp page, > > labels on my > > > x AXIS are centered so my 0 line is shifted on the right. So I have an > > uncorrect > > > chart. > > > > > > Do you know what is the problem and how i could resolve it ? > > > > > > Thanks in advance and go on. > > > Yoann. > > > > > > ===== > > My Blog: http://nathaniel-auvil.blog-city.com > > > > __________________________________________________ > > Do you Yahoo!? > > Yahoo! Tax Center - File online, calculators, forms, and more > > http://tax.yahoo.com > > > > ATTACHMENT part 2 image/jpeg name=image.jpeg ===== __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more http://tax.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-04-11 13:51:37
|
Never mind, i duplicated it. This is definitely a bug. We should have a fix tomorrow. --- jy...@fr... wrote: > Hi Nathaniel, > > First of all, congratulations for your job on jCharts project, it's very > interesting. > > I write you bc I have a little pb that I don't understand. I installed the > simpleDemo on my tomcat server and when I launch the > HorizontalBarImageMapServlet all is fine. But If I insert the *exactly* same > servlet into my project, displaying in *exactly* the same jsp page, labels on my > x AXIS are centered so my 0 line is shifted on the right. So I have an uncorrect > chart. > > Do you know what is the problem and how i could resolve it ? > > Thanks in advance and go on. > Yoann. ===== __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more http://tax.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-04-11 13:43:32
|
can you attach an image of the chart? --- jy...@fr... wrote: > Hi Nathaniel, > > First of all, congratulations for your job on jCharts project, it's very > interesting. > > I write you bc I have a little pb that I don't understand. I installed the > simpleDemo on my tomcat server and when I launch the > HorizontalBarImageMapServlet all is fine. But If I insert the *exactly* same > servlet into my project, displaying in *exactly* the same jsp page, labels on my > x AXIS are centered so my 0 line is shifted on the right. So I have an uncorrect > chart. > > Do you know what is the problem and how i could resolve it ? > > Thanks in advance and go on. > Yoann. ===== My Blog: http://nathaniel-auvil.blog-city.com __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more http://tax.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-04-09 02:24:48
|
The final release of jCharts 0.7.0 is out! There are no changes since the beta 3 release! ===== My Blog: http://nathaniel-auvil.blog-city.com __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more http://tax.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-03-28 14:50:50
|
there has been a new release of the User Guide for the 0.7.0 jCharts release. ===== My Blog: http://nathaniel-auvil.blog-city.com __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-03-24 13:40:46
|
There is code in the beta 2 for doing this on Point Charts which you could easily modify for line charts. Take a look at Legend.java on line: 235 We could do this for the next beta... --- JH Leong <hig...@ya...> wrote: > Hi, > I'm doing a line chart at the moment and i wonder > whether the icon shown on the legend can be the same > as the shape I have choosen for the graph. > > For example if i choose > PointChartProperties.SHAPE_DIAMOND for a data, can the > icon beside the data name on the legend be a Diamond > instead of the default square shape? > > ===== > Yo, it's me lor.Highland.... > > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! > http://platinum.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users ===== My Blog: http://nathaniel-auvil.blog-city.com __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
From: JH L. <hig...@ya...> - 2003-03-24 07:18:17
|
Hi, I'm doing a line chart at the moment and i wonder whether the icon shown on the legend can be the same as the shape I have choosen for the graph. For example if i choose PointChartProperties.SHAPE_DIAMOND for a data, can the icon beside the data name on the legend be a Diamond instead of the default square shape? ===== Yo, it's me lor.Highland.... __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
From: JH L. <hig...@ya...> - 2003-03-24 07:10:51
|
Hi, I'm doing a line chart at the moment and i wonder whether the icon shown on the legend can be the same as the shape I have choosen for the graph. For example if i choose PointChartProperties.SHAPE_DIAMOND for a data, can the icon beside the data name on the legend be a Diamond instead of the default square shape? ===== Yo, it's me lor.Highland.... __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
From: Bill B. <bil...@te...> - 2003-03-23 17:54:02
|
Is there a way to change the minimum value for an AxisChart? That is, = instead of going from 0 to 1000, I want it to go from 500 to 1000. Thanks, Bill |
From: Nathaniel G. A. <nat...@ya...> - 2003-03-19 15:10:33
|
If i understand you correctly, you want: | | | X----- where X is 0,0 on your chart and the '|' is y-axis and '-' is the x-axis? right now you have: | | | ----X----- This is not possible. I should have a moment to take a look at it tonight for inclusion in the 0.7.0 code. --- "Andrés_A._Gómez" <aa...@av...> wrote: > Mi firts xAxisLabels is "0" and my array of data degin in zero > > data[][ ] = { { 0,458,0 }, { 0,1460,2888 } } > xAxisLabels[ ] = { "0"," 8,972", "17,944" } > > ------------------- > |0 |458 |0 | > ------------------- > |0 |1460 |2888 | > ------------------- > the firts data is 0,0 > > ------------------------------------------------------------------------ > ---- > > Andrés A. Gómez P. > Analista / Programador > AvanSoft S.A. > Tel: (574) + 362-19-00 Ext 121 > Cel: 310 4134348 > > -----Mensaje original----- > De: jch...@li... > [mailto:jch...@li...] En nombre de > Nathaniel G. Auvil > Enviado el: miércoles, 19 de marzo de 2003 9:37 > Para: Andris_A._Gsmez > CC: jCharts - Users > Asunto: RE: [jCharts-users] Re: [jCharts-developers] ChartType.LINE > question > > > oh, i thought you were using the XY Scatter Plot in the 0.7 beta 2. > > a line chart y-axis would start at 0 by default if there are no negative > values. The x-axis are > just String Objects. If you are looking to plot x,y coordinates like > the equation y=x^2, use the > XY Scatter Plot in 0.7.0. > > If you are trying to plot label,value, you can use a Line Chart from > 0.6.0 or 0.7.0. If you want > zero as the first label, pass "0" as the first item in your axis labels > data. > > > > > --- "Andrés_A._Gómez" <aa...@av...> wrote: > > In jCharts 0.6.0 the object DataAxisProperties is not present, this is > > part of jCharts 0.7.0 Beta 2 ?? > > > > Andrés A. Gómez P. > > Analista / Programador > > AvanSoft S.A. > > Tel: (574) + 362-19-00 Ext 121 > > Cel: 310 4134348 > > > > -----Mensaje original----- > > De: Nathaniel G. Auvil [mailto:nat...@ya...] > > Enviado el: miércoles, 19 de marzo de 2003 9:00 > > Para: Andris_A._Gsmez > > Asunto: RE: [jCharts-users] Re: [jCharts-developers] ChartType.LINE > > question > > > > > > --- "Andrés_A._Gómez" <aa...@av...> wrote: > > > Yes the graph begin out of origin, in the first xAxisLabels, but > this > > is > > > not the origin, i need begin un the origin. > > > > > > The data is > > > data[][] = { { 0,458,0 }, { 0,1460,2888 } } > > > > > > ------------------- ===== My Blog: http://nathaniel-auvil.blog-city.com __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-03-19 14:37:33
|
oh, i thought you were using the XY Scatter Plot in the 0.7 beta 2. a line chart y-axis would start at 0 by default if there are no negative values. The x-axis are just String Objects. If you are looking to plot x,y coordinates like the equation y=x^2, use the XY Scatter Plot in 0.7.0. If you are trying to plot label,value, you can use a Line Chart from 0.6.0 or 0.7.0. If you want zero as the first label, pass "0" as the first item in your axis labels data. --- "Andrés_A._Gómez" <aa...@av...> wrote: > In jCharts 0.6.0 the object DataAxisProperties is not present, this is > part of jCharts 0.7.0 Beta 2 ?? > > Andrés A. Gómez P. > Analista / Programador > AvanSoft S.A. > Tel: (574) + 362-19-00 Ext 121 > Cel: 310 4134348 > > -----Mensaje original----- > De: Nathaniel G. Auvil [mailto:nat...@ya...] > Enviado el: miércoles, 19 de marzo de 2003 9:00 > Para: Andris_A._Gsmez > Asunto: RE: [jCharts-users] Re: [jCharts-developers] ChartType.LINE > question > > > --- "Andrés_A._Gómez" <aa...@av...> wrote: > > Yes the graph begin out of origin, in the first xAxisLabels, but this > is > > not the origin, i need begin un the origin. > > > > The data is > > data[][] = { { 0,458,0 }, { 0,1460,2888 } } > > > > ------------------- > > |0 |458 |0 | > > ------------------- > > |0 |1460 |2888 | > > ------------------- > > the firts data is 0,0 > > > > You could try using a UserDefinedScale on the x-axis: > > DataAxisProperties dataAxisProperties = (DataAxisProperties) > axisProperties.getXAxisProperties(); > dataAxisProperties.setUserDefinedScale( 0, 600 ); > > > > > > > > ===== > My Blog: http://nathaniel-auvil.blog-city.com > > __________________________________________________ > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! > http://platinum.yahoo.com > ===== My Blog: http://nathaniel-auvil.blog-city.com __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-03-19 13:35:56
|
I am not sure i understand. If you want it to begin at the origin, include 0,0 as your first data point. Or are you saying you want the x axis zero value to be at the y-axis? --- "Andrés_A._Gómez" <aa...@av...> wrote: > Good day, I am new in this list and I have a question, when I have a > line graph and I need that the lines begin in the origin that I can do. > > I have data[][ ] = { { 0.458.0 }, { 0.1460.2888 } } > I have xAxisLabels[ ] = { "0"," 8,972", "17,944" } > > the problem is that the graph does not begin in the origin (0,0), is > some way to solve this? > > > > tanks. > > > Andrés A. Gómez P. > Analista / Programador > > ===== My Blog: http://nathaniel-auvil.blog-city.com __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-03-19 02:11:31
|
The beta 2 is out which addresses the following issues: 1) Fixed NullPointerException when not displaying labels on Axis Charts. 2) Point Charts now show the shape for each data set in the Legend ===== My Blog: http://nathaniel-auvil.blog-city.com __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-03-15 15:48:19
|
The first beta of 0.7.0 has been released. Watch for a beta release of the users guide today as well... ===== My Blog: http://nathaniel-auvil.blog-city.com __________________________________________________ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-03-14 19:45:45
|
The 'Help' forum will be moved to the 'jcharts-users' mail list this weekend when the first beta of the 0.7.0 release hits. ===== My Blog: http://nathaniel-auvil.blog-city.com __________________________________________________ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com |
From: Nathaniel G. A. <nat...@ya...> - 2003-03-08 16:49:53
|
The samples section has been updated to include pixs of the new charts from 0.7.0. There is a "(jCharts 0.7.0)" next to each chart that is new in the 0.7.0 alpha. Check it out. ===== __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: Nathaniel G. A. <nat...@ya...> - 2003-03-07 02:38:11
|
New in Alpha 2 * Fixed bug in alpha 1: NullPointer when trying to render an AxisChart without a legend * Fixed bug in alpha 1: XAxis was rendering a grid line over the y-axis on a horizontal plot, so axis was always gray. * Copied the SwingTest.java from the test code to the demo package and named it SwingDemo.java * Bar and Clustered Bar, both vertical and horiztonal, allow value labels to be placed on them. Run the examples web app and look at the Bar Chart to see this. The source is in the demo package ===== __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: Nathaniel G. A. <nat...@ya...> - 2003-03-05 01:03:38
|
A 3rd party tool integration section has been added to the file releases. The first integration is for JasperReports also hosted on Sourceforge at-> http://jasperreports.sourceforge.net ===== __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: Nathaniel G. A. <nat...@ya...> - 2003-02-27 03:40:06
|
fixed a minor bug in that horizontal plots were rendering a grid line over the y-axis. ===== An easy read on your Digital Rights Disappearing [http://newsforge.com/newsforge/02/10/21/1449250.shtml?tid=19] Broadcast Protection Discussion Group [http://bpdg.blogs.eff.org/] Senator Hollings receives a pathetically piffling $278,534 to his coffers from the TV, movies and music businesses [http://www.theinquirer.net/?article=4689] __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: Nathaniel G. A. <nat...@ya...> - 2003-02-21 20:15:45
|
The first alpha for jCharts 0.7.0 has been released! Remember this is an alpha release, so things are still being added and changed...but it provides an early glimpse of things to come. *Added a Validation framework to assist developers in tracking down data problems. The Chart Properties Object now contains a method setValidate( boolean ) which allows developers to toggle the validations for speed. The IDataSeries interface has a new method: public void validate() throws PropertyException * Removed all 'transient' data members and made everything Serializable. * The encode( Chart chart, HttpServletResponse httpServletResponse ) method has been renamed to encodeServlet * A framework has been introduce which allows for custom scale increment code to be included in Axis Charts. Simply extend the org.jCharts.axisCharts.scale.AutomaticScaleCalculator Class and override the computeIncrement( int ) method. * Bug fix: x-axis labels will no longer go off the right edge of the chart image. * Horizontal Bar, Stacked Bar, and Clustered Bars have been added. * Scatter Plot Charts have been added. * Servlet demos have been updated to be easier for non-java programers to understand as many have requested this. So inheritance has been avoided and the code is self contained so you can just change values and use them as they are. ===== An easy read on your Digital Rights Disappearing [http://newsforge.com/newsforge/02/10/21/1449250.shtml?tid=19] Broadcast Protection Discussion Group [http://bpdg.blogs.eff.org/] Senator Hollings receives a pathetically piffling $278,534 to his coffers from the TV, movies and music businesses [http://www.theinquirer.net/?article=4689] __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: Nathaniel G. A. <nat...@ya...> - 2003-02-11 03:29:30
|
got the servlet demos compiling again. A couple of the chart servlets dont want to work though. And the stupid jsp wont work; there must be some whitespace in there somewhere. I would love to rip the chart.jsp out of there as you really should not create and encode a chart in a jsp. Added data set interface and data implementations for Scatter Plots. Not sure if the exact interfaces will stick but will find out when integrate into the AxisChart render. There could be an **early** alpha of 0.7.0 in a week or two... This would definitely include the horizontal bar type charts, validation framework, refactored AxisProperties implementations with the new LabelAxisProperties and DataAxisProperties Objects. I think there will be some form of labeling code for axis charts integrated in the next week so maybe that will be the cutoff for an alpha release. Any feedback? ===== An easy read on your Digital Rights Disappearing [http://newsforge.com/newsforge/02/10/21/1449250.shtml?tid=19] Broadcast Protection Discussion Group [http://bpdg.blogs.eff.org/] Senator Hollings receives a pathetically piffling $278,534 to his coffers from the TV, movies and music businesses [http://www.theinquirer.net/?article=4689] __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |