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...> - 2004-10-22 14:27:34
|
This is not possible with the current release of the Scatter Plot. --- "dav...@in..." <dav...@in...> wrote: > Hi > > it is possible to see an example with ScatterPlot? > I have problems on setting ScatterPlotProperties. > > private ScatterPlotProperties createScatterPlotProperties() { > Stroke[] strokes = new Stroke[]{LineChartProperties.DEFAULT_LINE_STROKE}; > Shape[] shapes = new Shape[]{PointChartProperties.SHAPE_CIRCLE}; > return new ScatterPlotProperties( strokes, shapes ); > } > > private ScatterPlotDataSet createScatterPlotDataSet(int numero_valori, double[] Indicatore1, > double[] Indicatore2, String banca){ > Point2D.Double[] points = new Point2D.Double[numero_valori]; > for( int x = 0; x < numero_valori; x++ ) { > //--- y = x^2 > points[x] = ScatterPlotDataSet.createPoint2DDouble(); > points[x].setLocation(Indicatore1[x], Indicatore2[x]); > } > ScatterPlotDataSet scatterPlotDataSet = new ScatterPlotDataSet( > this.createScatterPlotProperties() ); > scatterPlotDataSet.addDataPoints( points, Color.red, banca ); > return scatterPlotDataSet; > } > > public void service(HttpServletRequest req, HttpServletResponse httpServletResponse)throws > ServletException, IOException { > try{... > ScatterPlotDataSet scatterPlotDataSet = this.createScatterPlotDataSet(numero_valori, > Indicatore1, Indicatore2, banca); > IScatterPlotDataSeries scatterPlotDataSeries = new > ScatterPlotDataSeries(scatterPlotDataSet, Descr1, Descr2, banca); > > I'd like to change LineChartProperties, I don't want to see the line connecting the dots. > > Thank you > > > > > ____________________________________________________________ > Libero ADSL: navighi gratis a 1.2 Mega, senza canone e costi di attivazione. > Abbonati subito su http://www.libero.it > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > Use IT products in your business? Tell us what you think of them. Give us > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > _______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com |
From: Thiago H. B. <thi...@ce...> - 2004-10-22 13:16:41
|
I found the error: The size of the Axis Labels Array does not match the number of data elements to be plotted. -- Thiago Henrique Burgos Engenheiro de Configuração ______________________________________________________________ C.entro de E.studos e S.istemas A.vancados do R.ecife Fone: +55 81 3425-4857 http://www.cesar.org.br |
From: davidgalli\@inwind\.it <dav...@in...> - 2004-10-22 12:44:13
|
Hi it is possible to see an example with ScatterPlot? I have problems= on setting ScatterPlotProperties. private ScatterPlotProperties creat= eScatterPlotProperties() { Stroke[] strokes =3D new Stroke[]{LineCha= rtProperties.DEFAULT_LINE_STROKE}; Shape[] shapes =3D new Shape[]{Po= intChartProperties.SHAPE_CIRCLE}; return new ScatterPlotProperties( = strokes, shapes ); } private ScatterPlotDataSet createScatterPlotDa= taSet(int numero_valori, double[] Indicatore1, double[] Indicatore2, Stri= ng banca){ Point2D.Double[] points =3D new Point2D.Double[numero_val= ori]; for( int x =3D 0; x < numero_valori; x++ ) { //--- y =3D= x^2 points[x] =3D ScatterPlotDataSet.createPoint2DDouble(); = points[x].setLocation(Indicatore1[x], Indicatore2[x]); } Scat= terPlotDataSet scatterPlotDataSet =3D new ScatterPlotDataSet( this.create= ScatterPlotProperties() ); scatterPlotDataSet.addDataPoints( points,= Color.red, banca ); return scatterPlotDataSet; } public void= service(HttpServletRequest req, HttpServletResponse httpServletResponse)= throws ServletException, IOException { try{... Scatte= rPlotDataSet scatterPlotDataSet =3D this.createScatterPlotDataSet(numero_= valori, Indicatore1, Indicatore2, banca); IScatterPlotDataSe= ries scatterPlotDataSeries =3D new ScatterPlotDataSeries(scatterPlotDataS= et, Descr1, Descr2, banca); I'd like to change LineChartProperties, I = don't want to see the line connecting the dots. Thank you =0A=0A=0A=0A= ____________________________________________________________=0ALibero ADS= L: navighi gratis a 1.2 Mega, senza canone e costi di attivazione. =0AAbb= onati subito su http://www.libero.it =0A |
From: Thiago H. B. <thi...@ce...> - 2004-10-22 12:32:26
|
is it possible or not to make clustered chart with 2 bar for each cluster? where do I see the error? When I compile I get no error... >> >> --- Thiago Henrique Burgos <thi...@ce...> wrote: >> >> >> >>> -- >>> Thiago Henrique Burgos >>> Engenheiro de Configuração >>> ______________________________________________________________ >>> C.entro de E.studos e S.istemas A.vancados do R.ecife >>> Fone: +55 81 3425-4857 >>> http://www.cesar.org.br >>> >>> >> >> >> >> >>> ATTACHMENT part 2 message/rfc822 name=Re: [jCharts-users] >>> ClusteredBar Combo Chart >>> Date: Thu, 21 Oct 2004 09:44:03 -0300 >>> From: Thiago Henrique Burgos <thi...@ce...> >>> To: "Nathaniel G. Auvil" <nat...@ya...> >>> Subject: Re: [jCharts-users] ClusteredBar Combo Chart >>> >>> The image can not be displayed because it contains errors. >>> >>> Thiago Henrique Burgos >>> Engenheiro de Configuração >>> ______________________________________________________________ >>> C.entro de E.studos e S.istemas A.vancados do R.ecife >>> Fone: +55 81 3425-4857 >>> http://www.cesar.org.br >>> >>> >>> Nathaniel G. Auvil wrote: >>> >>> >>> >>>> what is the error you get? >>>> >>>> >>>> >>>> --- Thiago Henrique Burgos <thi...@ce...> wrote: >>>> >>>> >>>> >>>> >>>> >>>>> hello, >>>>> >>>>> is it possible to create a clustered bar with 2 bar instead of 3? >>>>> beacuse I could´t make it out. >>>>> When I put only two entries on my data variable it doenst work out. >>>>> Here is my class: >>>>> >>>>> package org.jCharts.demo.simpleServlet; >>>>> >>>>> >>>>> import org.jCharts.axisChart.AxisChart; >>>>> import >>>>> org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelPosition; >>>>> >>>>> import >>>>> org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelRenderer; >>>>> >>>>> import org.jCharts.chartData.AxisChartDataSet; >>>>> import org.jCharts.chartData.DataSeries; >>>>> import org.jCharts.chartData.interfaces.IAxisDataSeries; >>>>> import org.jCharts.encoders.ServletEncoderHelper; >>>>> import org.jCharts.properties.*; >>>>> import org.jCharts.properties.util.ChartFont; >>>>> import org.jCharts.test.TestDataGenerator; >>>>> import org.jCharts.types.ChartType; >>>>> >>>>> import javax.servlet.ServletException; >>>>> import javax.servlet.http.*; >>>>> import java.awt.*; >>>>> import java.io.IOException; >>>>> >>>>> >>>>> public class ComboChartServlet extends HttpServlet >>>>> { >>>>> //---all of my charts serviced by this Servlet will have the >>>>> same properties. >>>>> private LineChartProperties lineChartProperties; >>>>> >>>>> //---all of my charts serviced by this Servlet will have the >>>>> same properties. >>>>> private BarChartProperties barChartProperties; >>>>> >>>>> //---all of my charts serviced by this Servlet will have the >>>>> same properties. >>>>> protected LegendProperties legendProperties; >>>>> protected AxisProperties axisProperties; >>>>> protected ChartProperties chartProperties; >>>>> >>>>> protected int width = 550; >>>>> protected int height = 360; >>>>> >>>>> >>>>> >>>> >>>> /********************************************************************************************** >>>> >>>> >>>> >>>>> * >>>>> >>>>> >>>> >>> **********************************************************************************************/ >>> >>> >>> >>>>> public void init() >>>>> { >>>>> this.legendProperties = new LegendProperties(); >>>>> this.chartProperties = new ChartProperties(); >>>>> this.axisProperties = new AxisProperties( false ); >>>>> ChartFont axisScaleFont = new ChartFont( new Font( "Georgia >>>>> Negreta cursiva", Font.PLAIN, 13 ), Color.black ); >>>>> axisProperties.getXAxisProperties().setScaleChartFont( >>>>> axisScaleFont ); >>>>> axisProperties.getYAxisProperties().setScaleChartFont( >>>>> axisScaleFont ); >>>>> >>>>> ChartFont axisTitleFont = new ChartFont( new Font( "Arial >>>>> Narrow", Font.PLAIN, 14 ), Color.black ); >>>>> axisProperties.getXAxisProperties().setTitleChartFont( >>>>> axisTitleFont ); >>>>> axisProperties.getYAxisProperties().setTitleChartFont( >>>>> axisTitleFont ); >>>>> >>>>> ChartFont titleFont = new ChartFont( new Font( "Georgia >>>>> Negreta cursiva", Font.PLAIN, 14 ), Color.black ); >>>>> this.chartProperties.setTitleFont( titleFont ); >>>>> >>>>> >>>>> Stroke[] strokes = {LineChartProperties.DEFAULT_LINE_STROKE}; >>>>> Shape[] shapes = {PointChartProperties.SHAPE_DIAMOND}; >>>>> this.lineChartProperties = new LineChartProperties( strokes, >>>>> shapes ); >>>>> >>>>> this.barChartProperties = new BarChartProperties(); >>>>> } >>>>> >>>>> >>>>> >>>> >>>> /********************************************************************************************** >>>> >>>> >>>> >>>>> * >>>>> >>>>> >>>> >>> **********************************************************************************************/ >>> >>> >>> >>>>> public void service( HttpServletRequest req, HttpServletResponse >>>>> httpServletResponse ) throws ServletException, IOException >>>>> { >>>>> try >>>>> { >>>>> String[] xAxisLabels = {"2002", "2003", "2004"}; >>>>> String xAxisTitle = "Meses"; >>>>> String yAxisTitle = "Numero de CRs"; >>>>> String title = "Backlog de CRs"; >>>>> IAxisDataSeries dataSeries = new DataSeries( >>>>> xAxisLabels, xAxisTitle, yAxisTitle, title ); >>>>> ValueLabelRenderer valueLabelRenderer = new >>>>> ValueLabelRenderer( false, false, true ,-1 ); >>>>> valueLabelRenderer.setValueLabelPosition( >>>>> ValueLabelPosition.ON_TOP ); >>>>> valueLabelRenderer.useVerticalLabels( false ); >>>>> barChartProperties.addPostRenderEventListener( >>>>> valueLabelRenderer ); >>>>> //double[][] data= new double[][]{{ 145, 80, 55 >>>>> }}; >>>>> double[][] dataLinha = new double[][]{{50, 50, 50}}; >>>>> //String[] legendLabels = {"Bugs"}; >>>>> String[] legendLine = {"backlog de CRs"}; >>>>> //Paint[] paints = new Paint[]{Color.gray.darker()}; >>>>> Paint[] linePaints = new Paint[]{Color.green}; >>>>> double[][] data= new double[][]{ >>>>> {120,80,55}, >>>>> {25,10,84}, >>>>> {45,18,5} }; >>>>> String[] legendLabels= { "Bugs", "Security Holes", >>>>> "Backdoors" }; >>>>> Paint[] paints= TestDataGenerator.getRandomPaints( >>>>> 3 ); >>>>> ClusteredBarChartProperties >>>>> clusteredBarChartProperties= new ClusteredBarChartProperties(); >>>>> AxisChartDataSet axisChartDataSet= new >>>>> AxisChartDataSet( data, legendLabels, paints, >>>>> ChartType.BAR_CLUSTERED, clusteredBarChartProperties ); >>>>> dataSeries.addIAxisPlotDataSet( axisChartDataSet ); >>>>> >>>>> ChartProperties chartProperties= new >>>>> ChartProperties(); >>>>> //dataSeries.addIAxisPlotDataSet( new >>>>> AxisChartDataSet( data, legendLabels, paints, ChartType.BAR, >>>>> this.barChartProperties ) ); >>>>> dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( >>>>> dataLinha, legendLine, linePaints, ChartType.LINE, >>>>> this.lineChartProperties ) ); >>>>> AxisChart axisChart = new AxisChart( >>>>> dataSeries, this.chartProperties, this.axisProperties, >>>>> this.legendProperties, this.width, this.height ); >>>>> ServletEncoderHelper.encodeJPEG13( axisChart, 1.0f, >>>>> httpServletResponse ); >>>>> } >>>>> catch( Throwable throwable ) >>>>> { >>>>> //HACK do your error handling here... >>>>> throwable.printStackTrace(); >>>>> } >>>>> } >>>>> } >>>>> >>>>> -- >>>>> Thiago Henrique Burgos >>>>> Engenheiro de Configuração >>>>> ______________________________________________________________ >>>>> C.entro de E.studos e S.istemas A.vancados do R.ecife >>>>> Fone: +55 81 3425-4857 >>>>> http://www.cesar.org.br >>>>> >>>>> >>>>> ------------------------------------------------------- >>>>> This SF.net email is sponsored by: IT Product Guide on >>>>> ITManagersJournal >>>>> Use IT products in your business? Tell us what you think of them. >>>>> Give us >>>>> Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find >>>>> out more >>>>> http://productguide.itmanagersjournal.com/guidepromo.tmpl >>>>> _______________________________________________ >>>>> 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 >>>> >>>> ------------------------------------------------------- >>>> This SF.net email is sponsored by: IT Product Guide on >>>> ITManagersJournal >>>> Use IT products in your business? Tell us what you think of them. >>>> Give us >>>> Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find >>>> out more >>>> http://productguide.itmanagersjournal.com/guidepromo.tmpl >>>> _______________________________________________ >>>> jCharts-users mailing list >>>> jCh...@li... >>>> https://lists.sourceforge.net/lists/listinfo/jcharts-users >>>> >>>> >>>> >>>> >>>> >>> >>> >> >> >> >> >> >> __________________________________ >> Do you Yahoo!? >> Yahoo! Mail - Helps protect you from nasty viruses. >> http://promotions.yahoo.com/new_mail >> >> >> ------------------------------------------------------- >> This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >> Use IT products in your business? Tell us what you think of them. >> Give us >> Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find >> out more >> http://productguide.itmanagersjournal.com/guidepromo.tmpl >> _______________________________________________ >> jCharts-users mailing list >> jCh...@li... >> https://lists.sourceforge.net/lists/listinfo/jcharts-users >> >> >> >> > |
From: Thiago H. B. <thi...@ce...> - 2004-10-21 14:36:24
|
is it possible or not to make clustered chart with 2 bar for each cluster? where do I see the error? When I compile I get no error... Thiago Henrique Burgos Engenheiro de Configuração ______________________________________________________________ C.entro de E.studos e S.istemas A.vancados do R.ecife Fone: +55 81 3425-4857 http://www.cesar.org.br Nathaniel G. Auvil wrote: >what errors are you getting in the console? > > > >--- Thiago Henrique Burgos <thi...@ce...> wrote: > > > >>-- >>Thiago Henrique Burgos >>Engenheiro de Configuração >>______________________________________________________________ >>C.entro de E.studos e S.istemas A.vancados do R.ecife >>Fone: +55 81 3425-4857 >>http://www.cesar.org.br >> >> >> >> > > > >>ATTACHMENT part 2 message/rfc822 name=Re: [jCharts-users] ClusteredBar Combo Chart >>Date: Thu, 21 Oct 2004 09:44:03 -0300 >>From: Thiago Henrique Burgos <thi...@ce...> >>To: "Nathaniel G. Auvil" <nat...@ya...> >>Subject: Re: [jCharts-users] ClusteredBar Combo Chart >> >>The image can not be displayed because it contains errors. >> >>Thiago Henrique Burgos >>Engenheiro de Configuração >>______________________________________________________________ >>C.entro de E.studos e S.istemas A.vancados do R.ecife >>Fone: +55 81 3425-4857 >>http://www.cesar.org.br >> >> >> >>Nathaniel G. Auvil wrote: >> >> >> >>>what is the error you get? >>> >>> >>> >>>--- Thiago Henrique Burgos <thi...@ce...> wrote: >>> >>> >>> >>> >>> >>>>hello, >>>> >>>> is it possible to create a clustered bar with 2 bar instead of 3? >>>>beacuse I could´t make it out. >>>> When I put only two entries on my data variable it doenst work out. >>>>Here is my class: >>>> >>>>package org.jCharts.demo.simpleServlet; >>>> >>>> >>>>import org.jCharts.axisChart.AxisChart; >>>>import >>>>org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelPosition; >>>>import >>>>org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelRenderer; >>>>import org.jCharts.chartData.AxisChartDataSet; >>>>import org.jCharts.chartData.DataSeries; >>>>import org.jCharts.chartData.interfaces.IAxisDataSeries; >>>>import org.jCharts.encoders.ServletEncoderHelper; >>>>import org.jCharts.properties.*; >>>>import org.jCharts.properties.util.ChartFont; >>>>import org.jCharts.test.TestDataGenerator; >>>>import org.jCharts.types.ChartType; >>>> >>>>import javax.servlet.ServletException; >>>>import javax.servlet.http.*; >>>>import java.awt.*; >>>>import java.io.IOException; >>>> >>>> >>>>public class ComboChartServlet extends HttpServlet >>>>{ >>>> //---all of my charts serviced by this Servlet will have the same >>>>properties. >>>> private LineChartProperties lineChartProperties; >>>> >>>> //---all of my charts serviced by this Servlet will have the same >>>>properties. >>>> private BarChartProperties barChartProperties; >>>> >>>> //---all of my charts serviced by this Servlet will have the same >>>>properties. >>>> protected LegendProperties legendProperties; >>>> protected AxisProperties axisProperties; >>>> protected ChartProperties chartProperties; >>>> >>>> protected int width = 550; >>>> protected int height = 360; >>>> >>>> >>>> >>>> >>>> >>>/********************************************************************************************** >>> >>> >>>> * >>>> >>>> >>>> >>>> >>**********************************************************************************************/ >> >> >>>> public void init() >>>> { >>>> this.legendProperties = new LegendProperties(); >>>> this.chartProperties = new ChartProperties(); >>>> this.axisProperties = new AxisProperties( false ); >>>> ChartFont axisScaleFont = new ChartFont( new Font( "Georgia >>>>Negreta cursiva", Font.PLAIN, 13 ), Color.black ); >>>> axisProperties.getXAxisProperties().setScaleChartFont( >>>>axisScaleFont ); >>>> axisProperties.getYAxisProperties().setScaleChartFont( >>>>axisScaleFont ); >>>> >>>> ChartFont axisTitleFont = new ChartFont( new Font( "Arial >>>>Narrow", Font.PLAIN, 14 ), Color.black ); >>>> axisProperties.getXAxisProperties().setTitleChartFont( >>>>axisTitleFont ); >>>> axisProperties.getYAxisProperties().setTitleChartFont( >>>>axisTitleFont ); >>>> >>>> ChartFont titleFont = new ChartFont( new Font( "Georgia Negreta >>>>cursiva", Font.PLAIN, 14 ), Color.black ); >>>> this.chartProperties.setTitleFont( titleFont ); >>>> >>>> >>>> Stroke[] strokes = {LineChartProperties.DEFAULT_LINE_STROKE}; >>>> Shape[] shapes = {PointChartProperties.SHAPE_DIAMOND}; >>>> this.lineChartProperties = new LineChartProperties( strokes, >>>>shapes ); >>>> >>>> this.barChartProperties = new BarChartProperties(); >>>> } >>>> >>>> >>>> >>>> >>>> >>>/********************************************************************************************** >>> >>> >>>> * >>>> >>>> >>>> >>>> >>**********************************************************************************************/ >> >> >>>> public void service( HttpServletRequest req, HttpServletResponse >>>>httpServletResponse ) throws ServletException, IOException >>>> { >>>> try >>>> { >>>> String[] xAxisLabels = {"2002", "2003", "2004"}; >>>> String xAxisTitle = "Meses"; >>>> String yAxisTitle = "Numero de CRs"; >>>> String title = "Backlog de CRs"; >>>> IAxisDataSeries dataSeries = new DataSeries( xAxisLabels, >>>>xAxisTitle, yAxisTitle, title ); >>>> >>>> ValueLabelRenderer valueLabelRenderer = new >>>>ValueLabelRenderer( false, false, true ,-1 ); >>>> valueLabelRenderer.setValueLabelPosition( >>>>ValueLabelPosition.ON_TOP ); >>>> valueLabelRenderer.useVerticalLabels( false ); >>>> barChartProperties.addPostRenderEventListener( >>>>valueLabelRenderer ); >>>> >>>> //double[][] data= new double[][]{{ 145, 80, 55 }}; >>>> double[][] dataLinha = new double[][]{{50, 50, 50}}; >>>> //String[] legendLabels = {"Bugs"}; >>>> String[] legendLine = {"backlog de CRs"}; >>>> //Paint[] paints = new Paint[]{Color.gray.darker()}; >>>> Paint[] linePaints = new Paint[]{Color.green}; >>>> >>>> double[][] data= new double[][]{ >>>> {120,80,55}, >>>> {25,10,84}, >>>> {45,18,5} >>>> }; >>>> String[] legendLabels= { "Bugs", "Security Holes", >>>>"Backdoors" }; >>>> Paint[] paints= TestDataGenerator.getRandomPaints( 3 ); >>>> ClusteredBarChartProperties >>>>clusteredBarChartProperties= new ClusteredBarChartProperties(); >>>> AxisChartDataSet axisChartDataSet= new >>>>AxisChartDataSet( data, legendLabels, paints, ChartType.BAR_CLUSTERED, >>>>clusteredBarChartProperties ); >>>> dataSeries.addIAxisPlotDataSet( axisChartDataSet ); >>>> >>>> ChartProperties chartProperties= new ChartProperties(); >>>> >>>> //dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( >>>>data, legendLabels, paints, ChartType.BAR, this.barChartProperties ) ); >>>> dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( >>>>dataLinha, legendLine, linePaints, ChartType.LINE, >>>>this.lineChartProperties ) ); >>>> >>>> AxisChart axisChart = new AxisChart( dataSeries, >>>>this.chartProperties, this.axisProperties, this.legendProperties, >>>>this.width, this.height ); >>>> ServletEncoderHelper.encodeJPEG13( axisChart, 1.0f, >>>>httpServletResponse ); >>>> } >>>> catch( Throwable throwable ) >>>> { >>>> //HACK do your error handling here... >>>> throwable.printStackTrace(); >>>> } >>>> } >>>>} >>>> >>>>-- >>>>Thiago Henrique Burgos >>>>Engenheiro de Configuração >>>>______________________________________________________________ >>>>C.entro de E.studos e S.istemas A.vancados do R.ecife >>>>Fone: +55 81 3425-4857 >>>>http://www.cesar.org.br >>>> >>>> >>>> >>>>------------------------------------------------------- >>>>This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >>>>Use IT products in your business? Tell us what you think of them. Give us >>>>Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >>>>http://productguide.itmanagersjournal.com/guidepromo.tmpl >>>>_______________________________________________ >>>>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 >>> >>> >>>------------------------------------------------------- >>>This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >>>Use IT products in your business? Tell us what you think of them. Give us >>>Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >>>http://productguide.itmanagersjournal.com/guidepromo.tmpl >>>_______________________________________________ >>>jCharts-users mailing list >>>jCh...@li... >>>https://lists.sourceforge.net/lists/listinfo/jcharts-users >>> >>> >>> >>> >>> >>> >> >> > > > > >__________________________________ >Do you Yahoo!? >Yahoo! Mail - Helps protect you from nasty viruses. >http://promotions.yahoo.com/new_mail > > >------------------------------------------------------- >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >Use IT products in your business? Tell us what you think of them. Give us >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >http://productguide.itmanagersjournal.com/guidepromo.tmpl >_______________________________________________ >jCharts-users mailing list >jCh...@li... >https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > > |
From: Nathaniel G. A. <nat...@ya...> - 2004-10-21 14:16:52
|
what errors are you getting in the console? --- Thiago Henrique Burgos <thi...@ce...> wrote: > > -- > Thiago Henrique Burgos > Engenheiro de Configuração > ______________________________________________________________ > C.entro de E.studos e S.istemas A.vancados do R.ecife > Fone: +55 81 3425-4857 > http://www.cesar.org.br > > > ATTACHMENT part 2 message/rfc822 name=Re: [jCharts-users] ClusteredBar Combo Chart > Date: Thu, 21 Oct 2004 09:44:03 -0300 > From: Thiago Henrique Burgos <thi...@ce...> > To: "Nathaniel G. Auvil" <nat...@ya...> > Subject: Re: [jCharts-users] ClusteredBar Combo Chart > > The image can not be displayed because it contains errors. > > Thiago Henrique Burgos > Engenheiro de Configuração > ______________________________________________________________ > C.entro de E.studos e S.istemas A.vancados do R.ecife > Fone: +55 81 3425-4857 > http://www.cesar.org.br > > > > Nathaniel G. Auvil wrote: > > >what is the error you get? > > > > > > > >--- Thiago Henrique Burgos <thi...@ce...> wrote: > > > > > > > >>hello, > >> > >> is it possible to create a clustered bar with 2 bar instead of 3? > >>beacuse I could´t make it out. > >> When I put only two entries on my data variable it doenst work out. > >>Here is my class: > >> > >>package org.jCharts.demo.simpleServlet; > >> > >> > >>import org.jCharts.axisChart.AxisChart; > >>import > >>org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelPosition; > >>import > >>org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelRenderer; > >>import org.jCharts.chartData.AxisChartDataSet; > >>import org.jCharts.chartData.DataSeries; > >>import org.jCharts.chartData.interfaces.IAxisDataSeries; > >>import org.jCharts.encoders.ServletEncoderHelper; > >>import org.jCharts.properties.*; > >>import org.jCharts.properties.util.ChartFont; > >>import org.jCharts.test.TestDataGenerator; > >>import org.jCharts.types.ChartType; > >> > >>import javax.servlet.ServletException; > >>import javax.servlet.http.*; > >>import java.awt.*; > >>import java.io.IOException; > >> > >> > >>public class ComboChartServlet extends HttpServlet > >>{ > >> //---all of my charts serviced by this Servlet will have the same > >>properties. > >> private LineChartProperties lineChartProperties; > >> > >> //---all of my charts serviced by this Servlet will have the same > >>properties. > >> private BarChartProperties barChartProperties; > >> > >> //---all of my charts serviced by this Servlet will have the same > >>properties. > >> protected LegendProperties legendProperties; > >> protected AxisProperties axisProperties; > >> protected ChartProperties chartProperties; > >> > >> protected int width = 550; > >> protected int height = 360; > >> > >> > >> > >>/********************************************************************************************** > >> * > >> > >> > **********************************************************************************************/ > >> public void init() > >> { > >> this.legendProperties = new LegendProperties(); > >> this.chartProperties = new ChartProperties(); > >> this.axisProperties = new AxisProperties( false ); > >> ChartFont axisScaleFont = new ChartFont( new Font( "Georgia > >>Negreta cursiva", Font.PLAIN, 13 ), Color.black ); > >> axisProperties.getXAxisProperties().setScaleChartFont( > >>axisScaleFont ); > >> axisProperties.getYAxisProperties().setScaleChartFont( > >>axisScaleFont ); > >> > >> ChartFont axisTitleFont = new ChartFont( new Font( "Arial > >>Narrow", Font.PLAIN, 14 ), Color.black ); > >> axisProperties.getXAxisProperties().setTitleChartFont( > >>axisTitleFont ); > >> axisProperties.getYAxisProperties().setTitleChartFont( > >>axisTitleFont ); > >> > >> ChartFont titleFont = new ChartFont( new Font( "Georgia Negreta > >>cursiva", Font.PLAIN, 14 ), Color.black ); > >> this.chartProperties.setTitleFont( titleFont ); > >> > >> > >> Stroke[] strokes = {LineChartProperties.DEFAULT_LINE_STROKE}; > >> Shape[] shapes = {PointChartProperties.SHAPE_DIAMOND}; > >> this.lineChartProperties = new LineChartProperties( strokes, > >>shapes ); > >> > >> this.barChartProperties = new BarChartProperties(); > >> } > >> > >> > >> > >>/********************************************************************************************** > >> * > >> > >> > **********************************************************************************************/ > >> public void service( HttpServletRequest req, HttpServletResponse > >>httpServletResponse ) throws ServletException, IOException > >> { > >> try > >> { > >> String[] xAxisLabels = {"2002", "2003", "2004"}; > >> String xAxisTitle = "Meses"; > >> String yAxisTitle = "Numero de CRs"; > >> String title = "Backlog de CRs"; > >> IAxisDataSeries dataSeries = new DataSeries( xAxisLabels, > >>xAxisTitle, yAxisTitle, title ); > >> > >> ValueLabelRenderer valueLabelRenderer = new > >>ValueLabelRenderer( false, false, true ,-1 ); > >> valueLabelRenderer.setValueLabelPosition( > >>ValueLabelPosition.ON_TOP ); > >> valueLabelRenderer.useVerticalLabels( false ); > >> barChartProperties.addPostRenderEventListener( > >>valueLabelRenderer ); > >> > >> //double[][] data= new double[][]{{ 145, 80, 55 }}; > >> double[][] dataLinha = new double[][]{{50, 50, 50}}; > >> //String[] legendLabels = {"Bugs"}; > >> String[] legendLine = {"backlog de CRs"}; > >> //Paint[] paints = new Paint[]{Color.gray.darker()}; > >> Paint[] linePaints = new Paint[]{Color.green}; > >> > >> double[][] data= new double[][]{ > >> {120,80,55}, > >> {25,10,84}, > >> {45,18,5} > >> }; > >> String[] legendLabels= { "Bugs", "Security Holes", > >>"Backdoors" }; > >> Paint[] paints= TestDataGenerator.getRandomPaints( 3 ); > >> ClusteredBarChartProperties > >>clusteredBarChartProperties= new ClusteredBarChartProperties(); > >> AxisChartDataSet axisChartDataSet= new > >>AxisChartDataSet( data, legendLabels, paints, ChartType.BAR_CLUSTERED, > >>clusteredBarChartProperties ); > >> dataSeries.addIAxisPlotDataSet( axisChartDataSet ); > >> > >> ChartProperties chartProperties= new ChartProperties(); > >> > >> //dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( > >>data, legendLabels, paints, ChartType.BAR, this.barChartProperties ) ); > >> dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( > >>dataLinha, legendLine, linePaints, ChartType.LINE, > >>this.lineChartProperties ) ); > >> > >> AxisChart axisChart = new AxisChart( dataSeries, > >>this.chartProperties, this.axisProperties, this.legendProperties, > >>this.width, this.height ); > >> ServletEncoderHelper.encodeJPEG13( axisChart, 1.0f, > >>httpServletResponse ); > >> } > >> catch( Throwable throwable ) > >> { > >> //HACK do your error handling here... > >> throwable.printStackTrace(); > >> } > >> } > >>} > >> > >>-- > >>Thiago Henrique Burgos > >>Engenheiro de Configuração > >>______________________________________________________________ > >>C.entro de E.studos e S.istemas A.vancados do R.ecife > >>Fone: +55 81 3425-4857 > >>http://www.cesar.org.br > >> > >> > >> > >>------------------------------------------------------- > >>This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > >>Use IT products in your business? Tell us what you think of them. Give us > >>Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > >>http://productguide.itmanagersjournal.com/guidepromo.tmpl > >>_______________________________________________ > >>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 > > > > > >------------------------------------------------------- > >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > >Use IT products in your business? Tell us what you think of them. Give us > >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > >http://productguide.itmanagersjournal.com/guidepromo.tmpl > >_______________________________________________ > >jCharts-users mailing list > >jCh...@li... > >https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > > > > > > > > __________________________________ Do you Yahoo!? Yahoo! Mail - Helps protect you from nasty viruses. http://promotions.yahoo.com/new_mail |
From: Thiago H. B. <thi...@ce...> - 2004-10-21 13:28:47
|
-- Thiago Henrique Burgos Engenheiro de Configuração ______________________________________________________________ C.entro de E.studos e S.istemas A.vancados do R.ecife Fone: +55 81 3425-4857 http://www.cesar.org.br |
From: Nathaniel G. A. <nat...@ya...> - 2004-10-20 18:21:58
|
what is the error you get? --- Thiago Henrique Burgos <thi...@ce...> wrote: > hello, > > is it possible to create a clustered bar with 2 bar instead of 3? > beacuse I could´t make it out. > When I put only two entries on my data variable it doenst work out. > Here is my class: > > package org.jCharts.demo.simpleServlet; > > > import org.jCharts.axisChart.AxisChart; > import > org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelPosition; > import > org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelRenderer; > import org.jCharts.chartData.AxisChartDataSet; > import org.jCharts.chartData.DataSeries; > import org.jCharts.chartData.interfaces.IAxisDataSeries; > import org.jCharts.encoders.ServletEncoderHelper; > import org.jCharts.properties.*; > import org.jCharts.properties.util.ChartFont; > import org.jCharts.test.TestDataGenerator; > import org.jCharts.types.ChartType; > > import javax.servlet.ServletException; > import javax.servlet.http.*; > import java.awt.*; > import java.io.IOException; > > > public class ComboChartServlet extends HttpServlet > { > //---all of my charts serviced by this Servlet will have the same > properties. > private LineChartProperties lineChartProperties; > > //---all of my charts serviced by this Servlet will have the same > properties. > private BarChartProperties barChartProperties; > > //---all of my charts serviced by this Servlet will have the same > properties. > protected LegendProperties legendProperties; > protected AxisProperties axisProperties; > protected ChartProperties chartProperties; > > protected int width = 550; > protected int height = 360; > > > > /********************************************************************************************** > * > > **********************************************************************************************/ > public void init() > { > this.legendProperties = new LegendProperties(); > this.chartProperties = new ChartProperties(); > this.axisProperties = new AxisProperties( false ); > ChartFont axisScaleFont = new ChartFont( new Font( "Georgia > Negreta cursiva", Font.PLAIN, 13 ), Color.black ); > axisProperties.getXAxisProperties().setScaleChartFont( > axisScaleFont ); > axisProperties.getYAxisProperties().setScaleChartFont( > axisScaleFont ); > > ChartFont axisTitleFont = new ChartFont( new Font( "Arial > Narrow", Font.PLAIN, 14 ), Color.black ); > axisProperties.getXAxisProperties().setTitleChartFont( > axisTitleFont ); > axisProperties.getYAxisProperties().setTitleChartFont( > axisTitleFont ); > > ChartFont titleFont = new ChartFont( new Font( "Georgia Negreta > cursiva", Font.PLAIN, 14 ), Color.black ); > this.chartProperties.setTitleFont( titleFont ); > > > Stroke[] strokes = {LineChartProperties.DEFAULT_LINE_STROKE}; > Shape[] shapes = {PointChartProperties.SHAPE_DIAMOND}; > this.lineChartProperties = new LineChartProperties( strokes, > shapes ); > > this.barChartProperties = new BarChartProperties(); > } > > > > /********************************************************************************************** > * > > **********************************************************************************************/ > public void service( HttpServletRequest req, HttpServletResponse > httpServletResponse ) throws ServletException, IOException > { > try > { > String[] xAxisLabels = {"2002", "2003", "2004"}; > String xAxisTitle = "Meses"; > String yAxisTitle = "Numero de CRs"; > String title = "Backlog de CRs"; > IAxisDataSeries dataSeries = new DataSeries( xAxisLabels, > xAxisTitle, yAxisTitle, title ); > > ValueLabelRenderer valueLabelRenderer = new > ValueLabelRenderer( false, false, true ,-1 ); > valueLabelRenderer.setValueLabelPosition( > ValueLabelPosition.ON_TOP ); > valueLabelRenderer.useVerticalLabels( false ); > barChartProperties.addPostRenderEventListener( > valueLabelRenderer ); > > //double[][] data= new double[][]{{ 145, 80, 55 }}; > double[][] dataLinha = new double[][]{{50, 50, 50}}; > //String[] legendLabels = {"Bugs"}; > String[] legendLine = {"backlog de CRs"}; > //Paint[] paints = new Paint[]{Color.gray.darker()}; > Paint[] linePaints = new Paint[]{Color.green}; > > double[][] data= new double[][]{ > {120,80,55}, > {25,10,84}, > {45,18,5} > }; > String[] legendLabels= { "Bugs", "Security Holes", > "Backdoors" }; > Paint[] paints= TestDataGenerator.getRandomPaints( 3 ); > ClusteredBarChartProperties > clusteredBarChartProperties= new ClusteredBarChartProperties(); > AxisChartDataSet axisChartDataSet= new > AxisChartDataSet( data, legendLabels, paints, ChartType.BAR_CLUSTERED, > clusteredBarChartProperties ); > dataSeries.addIAxisPlotDataSet( axisChartDataSet ); > > ChartProperties chartProperties= new ChartProperties(); > > //dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( > data, legendLabels, paints, ChartType.BAR, this.barChartProperties ) ); > dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( > dataLinha, legendLine, linePaints, ChartType.LINE, > this.lineChartProperties ) ); > > AxisChart axisChart = new AxisChart( dataSeries, > this.chartProperties, this.axisProperties, this.legendProperties, > this.width, this.height ); > ServletEncoderHelper.encodeJPEG13( axisChart, 1.0f, > httpServletResponse ); > } > catch( Throwable throwable ) > { > //HACK do your error handling here... > throwable.printStackTrace(); > } > } > } > > -- > Thiago Henrique Burgos > Engenheiro de Configuração > ______________________________________________________________ > C.entro de E.studos e S.istemas A.vancados do R.ecife > Fone: +55 81 3425-4857 > http://www.cesar.org.br > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > Use IT products in your business? Tell us what you think of them. Give us > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > 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: Thiago H. B. <thi...@ce...> - 2004-10-20 17:53:30
|
hello, is it possible to create a clustered bar with 2 bar instead of 3? beacuse I could´t make it out. When I put only two entries on my data variable it doenst work out. Here is my class: package org.jCharts.demo.simpleServlet; import org.jCharts.axisChart.AxisChart; import org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelPosition; import org.jCharts.axisChart.customRenderers.axisValue.renderers.ValueLabelRenderer; import org.jCharts.chartData.AxisChartDataSet; import org.jCharts.chartData.DataSeries; import org.jCharts.chartData.interfaces.IAxisDataSeries; import org.jCharts.encoders.ServletEncoderHelper; import org.jCharts.properties.*; import org.jCharts.properties.util.ChartFont; import org.jCharts.test.TestDataGenerator; import org.jCharts.types.ChartType; import javax.servlet.ServletException; import javax.servlet.http.*; import java.awt.*; import java.io.IOException; public class ComboChartServlet extends HttpServlet { //---all of my charts serviced by this Servlet will have the same properties. private LineChartProperties lineChartProperties; //---all of my charts serviced by this Servlet will have the same properties. private BarChartProperties barChartProperties; //---all of my charts serviced by this Servlet will have the same properties. protected LegendProperties legendProperties; protected AxisProperties axisProperties; protected ChartProperties chartProperties; protected int width = 550; protected int height = 360; /********************************************************************************************** * **********************************************************************************************/ public void init() { this.legendProperties = new LegendProperties(); this.chartProperties = new ChartProperties(); this.axisProperties = new AxisProperties( false ); ChartFont axisScaleFont = new ChartFont( new Font( "Georgia Negreta cursiva", Font.PLAIN, 13 ), Color.black ); axisProperties.getXAxisProperties().setScaleChartFont( axisScaleFont ); axisProperties.getYAxisProperties().setScaleChartFont( axisScaleFont ); ChartFont axisTitleFont = new ChartFont( new Font( "Arial Narrow", Font.PLAIN, 14 ), Color.black ); axisProperties.getXAxisProperties().setTitleChartFont( axisTitleFont ); axisProperties.getYAxisProperties().setTitleChartFont( axisTitleFont ); ChartFont titleFont = new ChartFont( new Font( "Georgia Negreta cursiva", Font.PLAIN, 14 ), Color.black ); this.chartProperties.setTitleFont( titleFont ); Stroke[] strokes = {LineChartProperties.DEFAULT_LINE_STROKE}; Shape[] shapes = {PointChartProperties.SHAPE_DIAMOND}; this.lineChartProperties = new LineChartProperties( strokes, shapes ); this.barChartProperties = new BarChartProperties(); } /********************************************************************************************** * **********************************************************************************************/ public void service( HttpServletRequest req, HttpServletResponse httpServletResponse ) throws ServletException, IOException { try { String[] xAxisLabels = {"2002", "2003", "2004"}; String xAxisTitle = "Meses"; String yAxisTitle = "Numero de CRs"; String title = "Backlog de CRs"; IAxisDataSeries dataSeries = new DataSeries( xAxisLabels, xAxisTitle, yAxisTitle, title ); ValueLabelRenderer valueLabelRenderer = new ValueLabelRenderer( false, false, true ,-1 ); valueLabelRenderer.setValueLabelPosition( ValueLabelPosition.ON_TOP ); valueLabelRenderer.useVerticalLabels( false ); barChartProperties.addPostRenderEventListener( valueLabelRenderer ); //double[][] data= new double[][]{{ 145, 80, 55 }}; double[][] dataLinha = new double[][]{{50, 50, 50}}; //String[] legendLabels = {"Bugs"}; String[] legendLine = {"backlog de CRs"}; //Paint[] paints = new Paint[]{Color.gray.darker()}; Paint[] linePaints = new Paint[]{Color.green}; double[][] data= new double[][]{ {120,80,55}, {25,10,84}, {45,18,5} }; String[] legendLabels= { "Bugs", "Security Holes", "Backdoors" }; Paint[] paints= TestDataGenerator.getRandomPaints( 3 ); ClusteredBarChartProperties clusteredBarChartProperties= new ClusteredBarChartProperties(); AxisChartDataSet axisChartDataSet= new AxisChartDataSet( data, legendLabels, paints, ChartType.BAR_CLUSTERED, clusteredBarChartProperties ); dataSeries.addIAxisPlotDataSet( axisChartDataSet ); ChartProperties chartProperties= new ChartProperties(); //dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( data, legendLabels, paints, ChartType.BAR, this.barChartProperties ) ); dataSeries.addIAxisPlotDataSet( new AxisChartDataSet( dataLinha, legendLine, linePaints, ChartType.LINE, this.lineChartProperties ) ); AxisChart axisChart = new AxisChart( dataSeries, this.chartProperties, this.axisProperties, this.legendProperties, this.width, this.height ); ServletEncoderHelper.encodeJPEG13( axisChart, 1.0f, httpServletResponse ); } catch( Throwable throwable ) { //HACK do your error handling here... throwable.printStackTrace(); } } } -- Thiago Henrique Burgos Engenheiro de Configuração ______________________________________________________________ C.entro de E.studos e S.istemas A.vancados do R.ecife Fone: +55 81 3425-4857 http://www.cesar.org.br |
From: Nathaniel G. A. <nat...@ya...> - 2004-10-20 17:01:21
|
sure. --- Thiago Henrique Burgos <thi...@ce...> wrote: > Is it possible to make a combo Chart with Clustered Bars and a Line > crossing? > > Thiago Henrique Burgos > Engenheiro de Configuração > ______________________________________________________________ > C.entro de E.studos e S.istemas A.vancados do R.ecife > Fone: +55 81 3425-4857 > http://www.cesar.org.br > > > > Nathaniel G. Auvil wrote: > > >What error(s) are you getting? There are Ant targets to compile the demos. That Class is a > demo, > >not part of the core library. > > > > > > > >--- Thiago Henrique Burgos <thi...@ce...> wrote: > > > > > > > >>Hello, > >> > >> how can I change the servlet class and then compile it > >>alone(ComboChartServlet.java)? Jcharts uses the ComboChartServlet.class > >>isn´t right? So how can I make this ComboChartServlet.class? I can´t > >>compile it! > >> > >>Thiago Henrique Burgos > >>Engenheiro de Configuração > >>______________________________________________________________ > >>C.entro de E.studos e S.istemas A.vancados do R.ecife > >>Fone: +55 81 3425-4857 > >>http://www.cesar.org.br > >> > >> > >> > >>------------------------------------------------------- > >>This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > >>Use IT products in your business? Tell us what you think of them. Give us > >>Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > >>http://productguide.itmanagersjournal.com/guidepromo.tmpl > >>_______________________________________________ > >>jCharts-users mailing list > >>jCh...@li... > >>https://lists.sourceforge.net/lists/listinfo/jcharts-users > >> > >> > >> > > > > > > > > > >_______________________________ > >Do you Yahoo!? > >Declare Yourself - Register online to vote today! > >http://vote.yahoo.com > > > > > >------------------------------------------------------- > >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > >Use IT products in your business? Tell us what you think of them. Give us > >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > >http://productguide.itmanagersjournal.com/guidepromo.tmpl > >_______________________________________________ > >jCharts-users mailing list > >jCh...@li... > >https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > Use IT products in your business? Tell us what you think of them. Give us > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > _______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com |
From: Thiago H. B. <thi...@ce...> - 2004-10-20 16:16:49
|
Is it possible to make a combo Chart with Clustered Bars and a Line crossing? Thiago Henrique Burgos Engenheiro de Configuração ______________________________________________________________ C.entro de E.studos e S.istemas A.vancados do R.ecife Fone: +55 81 3425-4857 http://www.cesar.org.br Nathaniel G. Auvil wrote: >What error(s) are you getting? There are Ant targets to compile the demos. That Class is a demo, >not part of the core library. > > > >--- Thiago Henrique Burgos <thi...@ce...> wrote: > > > >>Hello, >> >> how can I change the servlet class and then compile it >>alone(ComboChartServlet.java)? Jcharts uses the ComboChartServlet.class >>isn´t right? So how can I make this ComboChartServlet.class? I can´t >>compile it! >> >>Thiago Henrique Burgos >>Engenheiro de Configuração >>______________________________________________________________ >>C.entro de E.studos e S.istemas A.vancados do R.ecife >>Fone: +55 81 3425-4857 >>http://www.cesar.org.br >> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >>Use IT products in your business? Tell us what you think of them. Give us >>Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >>http://productguide.itmanagersjournal.com/guidepromo.tmpl >>_______________________________________________ >>jCharts-users mailing list >>jCh...@li... >>https://lists.sourceforge.net/lists/listinfo/jcharts-users >> >> >> > > > > >_______________________________ >Do you Yahoo!? >Declare Yourself - Register online to vote today! >http://vote.yahoo.com > > >------------------------------------------------------- >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >Use IT products in your business? Tell us what you think of them. Give us >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >http://productguide.itmanagersjournal.com/guidepromo.tmpl >_______________________________________________ >jCharts-users mailing list >jCh...@li... >https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > > |
From: Nathaniel G. A. <nat...@ya...> - 2004-10-20 14:11:19
|
What error(s) are you getting? There are Ant targets to compile the demos. That Class is a demo, not part of the core library. --- Thiago Henrique Burgos <thi...@ce...> wrote: > Hello, > > how can I change the servlet class and then compile it > alone(ComboChartServlet.java)? Jcharts uses the ComboChartServlet.class > isn´t right? So how can I make this ComboChartServlet.class? I can´t > compile it! > > Thiago Henrique Burgos > Engenheiro de Configuração > ______________________________________________________________ > C.entro de E.studos e S.istemas A.vancados do R.ecife > Fone: +55 81 3425-4857 > http://www.cesar.org.br > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > Use IT products in your business? Tell us what you think of them. Give us > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > _______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com |
From: Thiago H. B. <thi...@ce...> - 2004-10-20 13:33:54
|
Hello, how can I change the servlet class and then compile it alone(ComboChartServlet.java)? Jcharts uses the ComboChartServlet.class isn´t right? So how can I make this ComboChartServlet.class? I can´t compile it! Thiago Henrique Burgos Engenheiro de Configuração ______________________________________________________________ C.entro de E.studos e S.istemas A.vancados do R.ecife Fone: +55 81 3425-4857 http://www.cesar.org.br |
From: Nathaniel G. A. <nat...@ya...> - 2004-10-18 20:07:07
|
there a 'chart.jsp' under the demo directory. But...you should not create charts in a jsp, you should use a Servlet. JSP's are not supposed to create binary output. --- Thiago Henrique Burgos <thi...@ce...> wrote: > > -- > Thiago Henrique Burgos > Engenheiro de Configuração > ______________________________________________________________ > C.entro de E.studos e S.istemas A.vancados do R.ecife > Fone: +55 81 3425-4857 > http://www.cesar.org.br > > > ATTACHMENT part 2 message/rfc822 name=Re: [jCharts-users] Combo charts > Date: Mon, 18 Oct 2004 15:22:49 -0300 > From: Thiago Henrique Burgos <thi...@ce...> > To: "Nathaniel G. Auvil" <nat...@ya...> > Subject: Re: [jCharts-users] Combo charts > > but i need a jsp code... is there any code where I can base my application? > > Thiago Henrique Burgos > Engenheiro de Configuração > ______________________________________________________________ > C.entro de E.studos e S.istemas A.vancados do R.ecife > Fone: +55 81 3425-4857 > http://www.cesar.org.br > > > > Nathaniel G. Auvil wrote: > > >there is a sample included under: > >jCharts-0.7.5\demo\simpleServlet\WEB-INF\classes\org\jCharts\demo\simpleServlet > > > > > > > > > > > >--- Thiago Henrique Burgos <thi...@ce...> wrote: > > > > > > > >>Hello people, > >> > >> Im a begginer in Java and Jcharts use. I need an source code example > >>of a combo chart like the sample(1 and 2) in Jcharts page. Is there > >>anyone who could help me? > >> > >>Thiago Henrique Burgos > >>Configuration Management > >>______________________________________________________________ > >>C.entro de E.studos e S.istemas A.vancados do R.ecife > >>Fone: +55 81 3425-4857 > >>http://www.cesar.org.br > >> > >> > >> > >>------------------------------------------------------- > >>This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > >>Use IT products in your business? Tell us what you think of them. Give us > >>Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > >>http://productguide.itmanagersjournal.com/guidepromo.tmpl > >>_______________________________________________ > >>jCharts-users mailing list > >>jCh...@li... > >>https://lists.sourceforge.net/lists/listinfo/jcharts-users > >> > >> > >> > > > > > > > > > >_______________________________ > >Do you Yahoo!? > >Declare Yourself - Register online to vote today! > >http://vote.yahoo.com > > > > > >------------------------------------------------------- > >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > >Use IT products in your business? Tell us what you think of them. Give us > >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > >http://productguide.itmanagersjournal.com/guidepromo.tmpl > >_______________________________________________ > >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: Thiago H. B. <thi...@ce...> - 2004-10-18 19:22:12
|
-- Thiago Henrique Burgos Engenheiro de Configuração ______________________________________________________________ C.entro de E.studos e S.istemas A.vancados do R.ecife Fone: +55 81 3425-4857 http://www.cesar.org.br |
From: Nathaniel G. A. <nat...@ya...> - 2004-10-18 18:12:30
|
there is a sample included under: jCharts-0.7.5\demo\simpleServlet\WEB-INF\classes\org\jCharts\demo\simpleServlet --- Thiago Henrique Burgos <thi...@ce...> wrote: > Hello people, > > Im a begginer in Java and Jcharts use. I need an source code example > of a combo chart like the sample(1 and 2) in Jcharts page. Is there > anyone who could help me? > > Thiago Henrique Burgos > Configuration Management > ______________________________________________________________ > C.entro de E.studos e S.istemas A.vancados do R.ecife > Fone: +55 81 3425-4857 > http://www.cesar.org.br > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > Use IT products in your business? Tell us what you think of them. Give us > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > _______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com |
From: Thiago H. B. <thi...@ce...> - 2004-10-18 17:30:59
|
Hello people, Im a begginer in Java and Jcharts use. I need an source code example of a combo chart like the sample(1 and 2) in Jcharts page. Is there anyone who could help me? Thiago Henrique Burgos Configuration Management ______________________________________________________________ C.entro de E.studos e S.istemas A.vancados do R.ecife Fone: +55 81 3425-4857 http://www.cesar.org.br |
From: Travis R. <tr...@gm...> - 2004-10-07 21:22:35
|
hehe, it's kinda cheesy, but executives love these things on their "executive dashboards" so they can look and see and say "yeeeeaaah, we're cruising at full speed on this project!" ;) Travis On Thu, 7 Oct 2004 13:50:27 -0700, Rod Macpherson <rma...@ve...> wrote: > OMG, that is soooo cheezy! :) The problem with dials (aside from cheeze > factor) is they are space inefficient and more than one or two range > values (hands) gets messy. Definitely convenient for a lot of mechanical > systems that produce a rotation but when you do not have those physical > constraints a line or matrix is better. Take this with a grain of salt > however because I have bad memories of Borland's cheezeware that over > used dials:) > > > > -----Original Message----- > From: Travis Reeder [mailto:tr...@gm...] > Sent: Thursday, October 07, 2004 1:13 PM > To: jch...@li... > Subject: [jCharts-users] Speedometer chart > > Has anyone thought about or worked on a speedometer chart like this: > http://peltiertech.com/Excel/Charts/Speedometer.html > > That would be a nice addition to jcharts. > > Travis > > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > Use IT products in your business? Tell us what you think of them. Give > us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find > out more http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > Use IT products in your business? Tell us what you think of them. Give us > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > |
From: Rod M. <rma...@ve...> - 2004-10-07 20:50:32
|
OMG, that is soooo cheezy! :) The problem with dials (aside from cheeze factor) is they are space inefficient and more than one or two range values (hands) gets messy. Definitely convenient for a lot of mechanical systems that produce a rotation but when you do not have those physical constraints a line or matrix is better. Take this with a grain of salt however because I have bad memories of Borland's cheezeware that over used dials:) -----Original Message----- From: Travis Reeder [mailto:tr...@gm...]=20 Sent: Thursday, October 07, 2004 1:13 PM To: jch...@li... Subject: [jCharts-users] Speedometer chart Has anyone thought about or worked on a speedometer chart like this: http://peltiertech.com/Excel/Charts/Speedometer.html That would be a nice addition to jcharts. Travis ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl _______________________________________________ jCharts-users mailing list jCh...@li... https://lists.sourceforge.net/lists/listinfo/jcharts-users |
From: Travis R. <tr...@gm...> - 2004-10-07 20:20:25
|
Has anyone thought about or worked on a speedometer chart like this: http://peltiertech.com/Excel/Charts/Speedometer.html That would be a nice addition to jcharts. Travis |
From: Nathaniel G. A. <nat...@ya...> - 2004-10-01 03:21:14
|
when you call: yAxis.setRoundToNearest(0), you are telling it to round to the nearest 10 to the zero'th power, or the nearest whole number. if you used the call: yAxis.setRoundToNearest(-3), that would say round to the nearest 10^-3, or .001. Looks like you might want to round to the nearest 10^-6 --- "Liu, Louis (Exchange)" <LL...@Be...> wrote: > > Hi, Nathaniel: > > I did yAxis.setUserDefinedScale( 0, 0.000001); and > yAxis.setRoundToNearest(0); I also set yAxis.setNumItems((int)maxY +2); > and this seems to have made it work (Note: maxY is the maximum of Y > data). I have also attached a code section below. I did read the User's > guide downloaded from the Web but yet to experience more to utilize many > classes of JCharts. Can you tell me how I can use ScaleCalculator to > adjust the Y-axis scale? What is the difference between Auto- and > UserDefinedScaleCalculator ? Commented code did not work as expected. > Can you see why? > > AxisProperties axisProperties= new AxisProperties(); > DataAxisProperties yAxis= (DataAxisProperties) > axisProperties.getYAxisProperties(); > > // UserDefinedScaleCalculator myScaleCalculator = new > UserDefinedScaleCalculator(0.0, 0.001); > // myScaleCalculator.setMinValue(0); > // myScaleCalculator.setMaxValue(maxY); > // myScaleCalculator.computeScaleValues(); > // yAxis.setScaleCalculator(myScaleCalculator); > //((DataAxisProperties)axisProperties.getYAxisProperties()).setUserDefin > edScale(0, maxY); > > LegendProperties legendProperties= new LegendProperties(); > > Dimension dimension=jPanel_Graph.getSize(); > AxisChart axisChart= new AxisChart( dataSeries, > chartProperties, axisProperties, legendProperties, dimension.width, > dimension.height ); > > > > -----Original Message----- > From: jch...@li... > [mailto:jch...@li...] On Behalf Of > Nathaniel G. Auvil > Sent: Tuesday, September 28, 2004 7:32 PM > To: jch...@li... > Subject: Re: [jCharts-users] Y-Axis range - How is it set ? > > > what is your rounding factor set to? Did you take a look at the users > guide? > > > > --- "Liu, Louis (Exchange)" <LL...@Be...> wrote: > > > I have just created a line chart. My data values are all less that 1, > > ranging from 0.01 to 0.8. The Y axis scale is always 0 to 4 which > makes > > my chart lie low and leave a large portion of empty space above it. > How > > is the Y axis range is calculated? How do I override it? > > > > > > > > Louis > > > > > > > > > > *********************************************************************** > > Bear Stearns is not responsible for any recommendation, solicitation, > > offer or agreement or any information about any transaction, customer > > account or account activity contained in this communication. > > > *********************************************************************** > > > > > > > > > _______________________________ > Do you Yahoo!? > Declare Yourself - Register online to vote today! > http://vote.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > Use IT products in your business? Tell us what you think of them. Give > us > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out > more > http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > *********************************************************************** > Bear Stearns is not responsible for any recommendation, solicitation, > offer or agreement or any information about any transaction, customer > account or account activity contained in this communication. > *********************************************************************** > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > Use IT products in your business? Tell us what you think of them. Give us > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > 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: Liu, L. \(Exchange\) <LL...@Be...> - 2004-09-29 13:58:51
|
Hi, Nathaniel: I did yAxis.setUserDefinedScale( 0, 0.000001); and yAxis.setRoundToNearest(0); I also set yAxis.setNumItems((int)maxY +2); and this seems to have made it work (Note: maxY is the maximum of Y data). I have also attached a code section below. I did read the User's guide downloaded from the Web but yet to experience more to utilize many classes of JCharts. Can you tell me how I can use ScaleCalculator to adjust the Y-axis scale? What is the difference between Auto- and UserDefinedScaleCalculator ? Commented code did not work as expected. Can you see why? AxisProperties axisProperties=3D new AxisProperties(); DataAxisProperties yAxis=3D (DataAxisProperties) axisProperties.getYAxisProperties(); =20 // UserDefinedScaleCalculator myScaleCalculator =3D new UserDefinedScaleCalculator(0.0, 0.001); // myScaleCalculator.setMinValue(0); // myScaleCalculator.setMaxValue(maxY); // myScaleCalculator.computeScaleValues(); // yAxis.setScaleCalculator(myScaleCalculator); //((DataAxisProperties)axisProperties.getYAxisProperties()).setUserDefin edScale(0, maxY); =20 LegendProperties legendProperties=3D new LegendProperties(); Dimension dimension=3DjPanel_Graph.getSize(); AxisChart axisChart=3D new AxisChart( dataSeries, chartProperties, axisProperties, legendProperties, dimension.width, dimension.height ); -----Original Message----- From: jch...@li... [mailto:jch...@li...] On Behalf Of Nathaniel G. Auvil Sent: Tuesday, September 28, 2004 7:32 PM To: jch...@li... Subject: Re: [jCharts-users] Y-Axis range - How is it set ? what is your rounding factor set to? Did you take a look at the users guide? --- "Liu, Louis (Exchange)" <LL...@Be...> wrote: > I have just created a line chart. My data values are all less that 1, > ranging from 0.01 to 0.8. The Y axis scale is always 0 to 4 which makes > my chart lie low and leave a large portion of empty space above it. How > is the Y axis range is calculated? How do I override it? >=20 > =20 >=20 > Louis >=20 > >=20 >=20 > *********************************************************************** > Bear Stearns is not responsible for any recommendation, solicitation,=20 > offer or agreement or any information about any transaction, customer=20 > account or account activity contained in this communication. > *********************************************************************** >=20 >=20 =09 _______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl _______________________________________________ jCharts-users mailing list jCh...@li... https://lists.sourceforge.net/lists/listinfo/jcharts-users *********************************************************************** Bear Stearns is not responsible for any recommendation, solicitation, offer or agreement or any information about any transaction, customer account or account activity contained in this communication. *********************************************************************** |
From: Nathaniel G. A. <nat...@ya...> - 2004-09-28 23:32:07
|
what is your rounding factor set to? Did you take a look at the users guide? --- "Liu, Louis (Exchange)" <LL...@Be...> wrote: > I have just created a line chart. My data values are all less that 1, > ranging from 0.01 to 0.8. The Y axis scale is always 0 to 4 which makes > my chart lie low and leave a large portion of empty space above it. How > is the Y axis range is calculated? How do I override it? > > > > Louis > > > > > *********************************************************************** > Bear Stearns is not responsible for any recommendation, solicitation, > offer or agreement or any information about any transaction, customer > account or account activity contained in this communication. > *********************************************************************** > > _______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com |
From: Liu, L. \(Exchange\) <LL...@Be...> - 2004-09-28 18:18:41
|
*********************************************************************** Bear Stearns is not responsible for any recommendation, solicitation, offer or agreement or any information about any transaction, customer account or account activity contained in this communication. *********************************************************************** |
From: Travis R. <tr...@gm...> - 2004-09-22 17:20:39
|
No, I mean two bars, like in quicken it would be one value is income for the month, the other value is expenses for the month, then they have a line graph that shows net worth as the difference of those two bars. I'll try Chris' method. Where did you post that, dev list? On Wed, 22 Sep 2004 06:04:10 -0700 (PDT), Nathaniel G. Auvil <nat...@ya...> wrote: > > i think what he is after is having a single bar extend above and below the zero line. But, yes, > if it is two bars, he should be able to do it with your code. > > > > > --- Chris McKay <ch...@de...> wrote: > > > Nathanial, you can do this in the current CVS code with a stacked bar chart > > with negative values in one data set and positive in the other. I posted a > > sample graph last week. > > > > C > > > > > -----Original Message----- > > > From: jch...@li... > > > [mailto:jch...@li...] On Behalf > > > Of Nathaniel G. Auvil > > > Sent: Wednesday, 22 September 2004 1:56 p.m. > > > To: jch...@li... > > > Subject: Re: [jCharts-users] Above and below bars > > > > > > > > > no this is not possible in the current code base. I do not > > > think it would be all that hard to implement though. > > > > > > > > > --- Travis Reeder <tr...@gm...> wrote: > > > > > > > Is it possible to make a graph with a positive value above zero and > > > > negatives value below zero in same bar, like a net worth / income > > > > expense graph like you see in Quicken? > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 > > Project Admins to receive an Apple iPod Mini FREE for your judgement on > > who ports your project to Linux PPC the best. Sponsored by IBM. > > Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php > > _______________________________________________ > > jCharts-users mailing list > > jCh...@li... > > https://lists.sourceforge.net/lists/listinfo/jcharts-users > > > > > _______________________________ > Do you Yahoo!? > Declare Yourself - Register online to vote today! > http://vote.yahoo.com > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 > Project Admins to receive an Apple iPod Mini FREE for your judgement on > who ports your project to Linux PPC the best. Sponsored by IBM. > Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php > _______________________________________________ > jCharts-users mailing list > jCh...@li... > https://lists.sourceforge.net/lists/listinfo/jcharts-users > |