You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(95) |
Sep
(42) |
Oct
(2) |
Nov
(7) |
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
(34) |
Mar
|
Apr
|
May
(64) |
Jun
(113) |
Jul
(60) |
Aug
(9) |
Sep
(6) |
Oct
(20) |
Nov
(11) |
Dec
|
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 16:51:25
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28547/src/documentation/content/xdocs/userGuide Modified Files: index.xml Log Message: Index: index.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/index.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** index.xml 5 Jun 2004 16:17:38 -0000 1.4 --- index.xml 5 Jun 2004 16:51:16 -0000 1.5 *************** *** 28,31 **** --- 28,34 ---- <link href="http://jcharts.sourceforge.net/usersGuide/0.7/">this link</link> to view the current release version. </warning> + <p> + All the images used in this User Guide are generated from source in the: <code>org.krysalis.jcharts.demo.userGuide</code> Package. + </p> </section> </body> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 16:51:12
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/area In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28477/src/documentation/content/xdocs/userGuide/axisCharts/area Modified Files: index.xml book.xml Added Files: stacked.xml Log Message: Index: index.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/area/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 5 Jun 2004 14:25:57 -0000 1.1 --- index.xml 5 Jun 2004 16:51:04 -0000 1.2 *************** *** 9,14 **** <title>Area Charts</title> <p> ! This is the Area Charts Section </p> </section> </body> --- 9,45 ---- <title>Area Charts</title> <p> ! Here is some code to generate an Area Chart. You can send 1..n data sets through it to be plotted. </p> + <source> + 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 }, + { 50, 145, 6, 166, 105, 110, 85 } }; + String[] legendLabels= { "Bugs", "FUD Towards Gnu/Linux" }; + Paint[] paints= new Paint[] { new Color( 153, 0, 255 ,100 ), + new Color( 204,0,255, 150 ) }; + + AreaChartProperties areaChartProperties= new AreaChartProperties(); + AxisChartDataSet axisChartDataSet= new AxisChartDataSet( data, legendLabels, + paints, ChartType.AREA, + areaChartProperties ); + + dataSeries.addIAxisPlotDataSet( axisChartDataSet ); + + ChartProperties chartProperties= new ChartProperties(); + AxisProperties axisProperties= new AxisProperties(); + LegendProperties legendProperties= new LegendProperties(); + + AxisChart axisChart= new AxisChart( dataSeries, chartProperties, + axisProperties, legendProperties, + AxisChartsGuide.width, AxisChartsGuide.height ); + </source> + <figure src="images/userGuide/areaCharts/areaChart.png" alt="Area Chart"/> </section> </body> --- NEW FILE: stacked.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd"> <document> <header> <title>Area Charts</title> </header> <body> <section> <title>Stacked Area Charts</title> <p> Here is some code to generate an Area Chart. You can send 1..n data sets through it to be plotted. </p> <source> 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 }, { 250, 45, -36, 66, 145, 80, 55 } }; String[] legendLabels= { "Bugs", "Security Holes" }; Paint[] paints= TestDataGenerator.getRandomPaints( 2 ); AreaChartProperties areaChartProperties= new AreaChartProperties(); AxisChartDataSet axisChartDataSet= new AxisChartDataSet( data, legendLabels, paints, ChartType.AREA_STACKED, areaChartProperties ); dataSeries.addIAxisPlotDataSet( axisChartDataSet ); ChartProperties chartProperties= new ChartProperties(); AxisProperties axisProperties= new AxisProperties(); LegendProperties legendProperties= new LegendProperties(); AxisChart axisChart= new AxisChart( dataSeries, chartProperties, axisProperties, legendProperties, AxisChartsGuide.width, AxisChartsGuide.height ); </source> <figure src="images/userGuide/areaCharts/stackedArea.png" alt=" Stacked Area Chart"/> </section> </body> </document> Index: book.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/area/book.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** book.xml 5 Jun 2004 14:25:57 -0000 1.1 --- book.xml 5 Jun 2004 16:51:04 -0000 1.2 *************** *** 11,15 **** <menu label="Area Charts"> ! <menu-item label="Simple" href="index.html"/> <menu-item label="Back" href="../index.html"/> </menu> --- 11,16 ---- <menu label="Area Charts"> ! <menu-item label="Area" href="index.html"/> ! <menu-item label="Stacked Area" href="stacked.html"/> <menu-item label="Back" href="../index.html"/> </menu> |
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22236/src/documentation/content/xdocs/userGuide Modified Files: legendChartPadding.xml chartBackground.xml book.xml legendPlacement.xml pie2dBorderStroke.xml legendBorder.xml legendIconBorder.xml antiAliasing.xml legendVisibility.xml chartTitles.xml pie2dLabels.xml legendBackground.xml index.xml legendFont.xml legendDefault.xml pieChart2DExample.xml download.xml edgePadding.xml servletDemo.xml chartBorder.xml pie2dZeroDegreeOffset.xml legendLayout.xml exportingImages.xml contents.xml Log Message: Index: download.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/download.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** download.xml 15 Jun 2003 14:28:25 -0000 1.1 --- download.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Downloading</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: legendLayout.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/legendLayout.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** legendLayout.xml 5 Jul 2003 13:24:58 -0000 1.1 --- legendLayout.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Chart Legends</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: book.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/book.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** book.xml 4 Jun 2004 02:45:49 -0000 1.9 --- book.xml 5 Jun 2004 16:17:38 -0000 1.10 *************** *** 2,8 **** <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> ! <!-- Sample book.xml file. If this file is renamed to 'book.xml', it will be ! used to define the menu in this subdirectory, instead of that generated from ! site.xml. --> <book software="jCharts" --- 2,6 ---- <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> ! <!-- $Id$ --> <book software="jCharts" *************** *** 49,52 **** --- 47,51 ---- <menu-item label="Labels on Pie" href="pie2dLabels.html"/> </menu> + <menu label="3D Pie Charts"> *************** *** 55,75 **** <menu label="Axis Charts"> ! <menu-item label="Common" href="axisCharts/common/index.html"/> </menu> - <menu label="Area Charts"> - </menu> - <menu label="Bar Charts"> - </menu> - <menu label="Line Charts"> - </menu> - <menu label="Point Charts"> - </menu> - <menu label="Stock Charts"> - </menu> - <menu label="XY Charts"> - </menu> - <menu label="Combo Charts"> - </menu> <menu label="Interactive Charts"> --- 54,68 ---- <menu label="Axis Charts"> ! <menu-item label="Index" href="./axisCharts/index.html"/> ! <menu-item label="Common" href="./axisCharts/common/index.html"/> ! <menu-item label="Area Charts" href="./axisCharts/area/index.html"/> ! <menu-item label="Bar Charts" href="./axisCharts/bar/index.html"/> ! <menu-item label="Line Charts" href="./axisCharts/line/index.html"/> ! <menu-item label="Point Charts" href="./axisCharts/point/index.html"/> ! <menu-item label="Stock Charts" href="./axisCharts/stock/index.html"/> ! <menu-item label="XY Charts" href="./axisCharts/xy/index.html"/> ! <menu-item label="Combo Charts" href="./axisCharts/combo/index.html"/> </menu> <menu label="Interactive Charts"> Index: legendFont.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/legendFont.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** legendFont.xml 5 Jul 2003 13:24:58 -0000 1.1 --- legendFont.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Chart Legends</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: chartBackground.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/chartBackground.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** chartBackground.xml 22 Jun 2003 14:16:53 -0000 1.1 --- chartBackground.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Chart Background Paint</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: pie2dLabels.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/pie2dLabels.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pie2dLabels.xml 1 Jun 2004 00:49:50 -0000 1.1 --- pie2dLabels.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Pie Charts</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: chartBorder.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/chartBorder.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** chartBorder.xml 22 Jun 2003 14:16:53 -0000 1.1 --- chartBorder.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Chart Borders</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: legendBackground.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/legendBackground.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** legendBackground.xml 5 Jul 2003 13:24:58 -0000 1.1 --- legendBackground.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Chart Legends</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: legendDefault.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/legendDefault.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** legendDefault.xml 5 Jul 2003 13:24:58 -0000 1.1 --- legendDefault.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Chart Legends</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: antiAliasing.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/antiAliasing.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** antiAliasing.xml 16 Aug 2003 20:47:36 -0000 1.1 --- antiAliasing.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Anti-Aliasing</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: edgePadding.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/edgePadding.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** edgePadding.xml 22 Jun 2003 14:16:53 -0000 1.1 --- edgePadding.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Edge Padding</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: index.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/index.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** index.xml 22 Jun 2003 14:17:03 -0000 1.3 --- index.xml 5 Jun 2004 16:17:38 -0000 1.4 *************** *** 4,10 **** <header> <title>jCharts User Guide</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: exportingImages.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/exportingImages.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** exportingImages.xml 16 Aug 2003 16:04:12 -0000 1.3 --- exportingImages.xml 5 Jun 2004 16:17:38 -0000 1.4 *************** *** 4,10 **** <header> <title>Exporting Images</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: legendIconBorder.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/legendIconBorder.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** legendIconBorder.xml 11 Jul 2003 02:41:28 -0000 1.1 --- legendIconBorder.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Chart Legends</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: pieChart2DExample.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/pieChart2DExample.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pieChart2DExample.xml 24 Sep 2003 01:18:24 -0000 1.1 --- pieChart2DExample.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Pie Charts</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: legendVisibility.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/legendVisibility.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** legendVisibility.xml 5 Jul 2003 13:24:58 -0000 1.1 --- legendVisibility.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Chart Legends</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: contents.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/contents.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** contents.xml 15 Jun 2003 14:28:25 -0000 1.1 --- contents.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Archive Contents</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: pie2dBorderStroke.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/pie2dBorderStroke.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pie2dBorderStroke.xml 1 Jun 2004 00:49:50 -0000 1.1 --- pie2dBorderStroke.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Pie Charts</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: legendPlacement.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/legendPlacement.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** legendPlacement.xml 5 Jul 2003 13:24:58 -0000 1.1 --- legendPlacement.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Chart Legends</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: pie2dZeroDegreeOffset.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/pie2dZeroDegreeOffset.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pie2dZeroDegreeOffset.xml 1 Jun 2004 00:49:50 -0000 1.1 --- pie2dZeroDegreeOffset.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Pie Charts</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: legendChartPadding.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/legendChartPadding.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** legendChartPadding.xml 11 Jul 2003 02:41:28 -0000 1.1 --- legendChartPadding.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Chart Legends</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: servletDemo.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/servletDemo.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** servletDemo.xml 15 Jun 2003 14:28:25 -0000 1.1 --- servletDemo.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Servlet Demo</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: legendBorder.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/legendBorder.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** legendBorder.xml 11 Jul 2003 02:41:28 -0000 1.1 --- legendBorder.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 4,10 **** <header> <title>Chart Legends</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- Index: chartTitles.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/chartTitles.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** chartTitles.xml 22 Jun 2003 14:17:03 -0000 1.2 --- chartTitles.xml 5 Jun 2004 16:17:38 -0000 1.3 *************** *** 4,10 **** <header> <title>Chart Titles</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 16:17:49
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/combo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22236/src/documentation/content/xdocs/userGuide/axisCharts/combo Modified Files: index.xml Log Message: Index: index.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/combo/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 5 Jun 2004 14:25:56 -0000 1.1 --- index.xml 5 Jun 2004 16:17:40 -0000 1.2 *************** *** 3,13 **** <document> <header> ! <title>Area Charts</title> </header> <body> <section> ! <title>Area Charts</title> <p> ! This is the Area Charts Section </p> </section> --- 3,13 ---- <document> <header> ! <title>Combo Charts</title> </header> <body> <section> ! <title>Combo Charts</title> <p> ! </p> </section> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 16:17:49
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/bar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22236/src/documentation/content/xdocs/userGuide/axisCharts/bar Modified Files: index.xml Log Message: Index: index.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/bar/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 5 Jun 2004 14:25:58 -0000 1.1 --- index.xml 5 Jun 2004 16:17:39 -0000 1.2 *************** *** 3,13 **** <document> <header> ! <title>Area Charts</title> </header> <body> <section> ! <title>Area Charts</title> <p> ! This is the Area Charts Section </p> </section> --- 3,13 ---- <document> <header> ! <title>Point Charts</title> </header> <body> <section> ! <title>Point Charts</title> <p> ! </p> </section> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 16:17:49
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22236/src/documentation/content/xdocs/userGuide/axisCharts/common Modified Files: index.xml Log Message: Index: index.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/common/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 4 Jun 2004 02:45:33 -0000 1.1 --- index.xml 5 Jun 2004 16:17:39 -0000 1.2 *************** *** 4,10 **** <header> <title>Index</title> - <authors> - <person name="Nathaniel Auvil" email="nat...@so..."/> - </authors> </header> <body> --- 4,7 ---- |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 16:17:49
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/stock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22236/src/documentation/content/xdocs/userGuide/axisCharts/stock Modified Files: index.xml Log Message: Index: index.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/stock/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 5 Jun 2004 14:25:56 -0000 1.1 --- index.xml 5 Jun 2004 16:17:39 -0000 1.2 *************** *** 3,13 **** <document> <header> ! <title>Area Charts</title> </header> <body> <section> ! <title>Area Charts</title> <p> ! This is the Area Charts Section </p> </section> --- 3,13 ---- <document> <header> ! <title>Stock Charts</title> </header> <body> <section> ! <title>Stock Charts</title> <p> ! </p> </section> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 16:17:48
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/xy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22236/src/documentation/content/xdocs/userGuide/axisCharts/xy Modified Files: index.xml Log Message: Index: index.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/xy/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 5 Jun 2004 14:25:57 -0000 1.1 --- index.xml 5 Jun 2004 16:17:39 -0000 1.2 *************** *** 3,13 **** <document> <header> ! <title>Area Charts</title> </header> <body> <section> ! <title>Area Charts</title> <p> ! This is the Area Charts Section </p> </section> --- 3,13 ---- <document> <header> ! <title>XY Charts</title> </header> <body> <section> ! <title>XY Charts</title> <p> ! </p> </section> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 16:17:47
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/line In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22236/src/documentation/content/xdocs/userGuide/axisCharts/line Modified Files: index.xml Log Message: Index: index.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/line/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.xml 5 Jun 2004 14:25:57 -0000 1.1 --- index.xml 5 Jun 2004 16:17:38 -0000 1.2 *************** *** 3,13 **** <document> <header> ! <title>Area Charts</title> </header> <body> <section> ! <title>Area Charts</title> <p> ! This is the Area Charts Section </p> </section> --- 3,13 ---- <document> <header> ! <title>Line Charts</title> </header> <body> <section> ! <title>Line Charts</title> <p> ! </p> </section> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:07
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/point In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1835/src/documentation/content/xdocs/userGuide/axisCharts/point Added Files: index.xml book.xml Log Message: --- NEW FILE: index.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd"> <document> <header> <title>Area Charts</title> </header> <body> <section> <title>Area Charts</title> <p> This is the Area Charts Section </p> </section> </body> </document> --- NEW FILE: book.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> <!-- $Id: book.xml,v 1.1 2004/06/05 14:25:58 nathaniel_auvil Exp $ --> <book software="jCharts" title="Axis Charts - Common" copyright="@year@ The Krysalis Software Foundation" xmlns:xlink="http://www.w3.org/1999/xlink"> <menu label="Area Charts"> <menu-item label="Simple" href="index.html"/> <menu-item label="Back" href="../index.html"/> </menu> </book> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:07
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/bar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1835/src/documentation/content/xdocs/userGuide/axisCharts/bar Added Files: index.xml book.xml Log Message: --- NEW FILE: index.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd"> <document> <header> <title>Area Charts</title> </header> <body> <section> <title>Area Charts</title> <p> This is the Area Charts Section </p> </section> </body> </document> --- NEW FILE: book.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> <!-- $Id: book.xml,v 1.1 2004/06/05 14:25:58 nathaniel_auvil Exp $ --> <book software="jCharts" title="Axis Charts - Common" copyright="@year@ The Krysalis Software Foundation" xmlns:xlink="http://www.w3.org/1999/xlink"> <menu label="Area Charts"> <menu-item label="Simple" href="index.html"/> <menu-item label="Back" href="../index.html"/> </menu> </book> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:07
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/line In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1835/src/documentation/content/xdocs/userGuide/axisCharts/line Added Files: book.xml index.xml Log Message: --- NEW FILE: index.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd"> <document> <header> <title>Area Charts</title> </header> <body> <section> <title>Area Charts</title> <p> This is the Area Charts Section </p> </section> </body> </document> --- NEW FILE: book.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> <!-- $Id: book.xml,v 1.1 2004/06/05 14:25:57 nathaniel_auvil Exp $ --> <book software="jCharts" title="Axis Charts - Common" copyright="@year@ The Krysalis Software Foundation" xmlns:xlink="http://www.w3.org/1999/xlink"> <menu label="Area Charts"> <menu-item label="Simple" href="index.html"/> <menu-item label="Back" href="../index.html"/> </menu> </book> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:07
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1835/src/documentation/content/xdocs/userGuide/axisCharts/common Modified Files: book.xml rounding.xml Log Message: Index: rounding.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/common/rounding.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** rounding.xml 5 Jun 2004 13:30:06 -0000 1.2 --- rounding.xml 5 Jun 2004 14:25:57 -0000 1.3 *************** *** 12,18 **** method on the DataAxisProperties Object. </p> ! <warn> Note: when using a user defined scale, be aware your increment will be rounded by this rounding factor. ! </warn> <p> The following example sets the y-axis to round to the nearst 1/100 or 10 to the -2'nd power. --- 12,18 ---- method on the DataAxisProperties Object. </p> ! <warning> Note: when using a user defined scale, be aware your increment will be rounded by this rounding factor. ! </warning> <p> The following example sets the y-axis to round to the nearst 1/100 or 10 to the -2'nd power. Index: book.xml =================================================================== RCS file: /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/common/book.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** book.xml 4 Jun 2004 02:45:33 -0000 1.1 --- book.xml 5 Jun 2004 14:25:57 -0000 1.2 *************** *** 2,8 **** <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> ! <!-- Sample book.xml file. If this file is renamed to 'book.xml', it will be ! used to define the menu in this subdirectory, instead of that generated from ! site.xml. --> <book software="jCharts" --- 2,6 ---- <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> ! <!-- $Id$ --> <book software="jCharts" *************** *** 12,35 **** ! <menu label="Axis Charts"> <menu-item label="Index" href="index.html"/> <menu-item label="Rounding" href="rounding.html"/> ! <menu-item label="Axis Label Rotation" href="axisLabelRotation.html"/> </menu> - <menu label="Area Charts"> - </menu> - <menu label="Bar Charts"> - </menu> - <menu label="Line Charts"> - </menu> - <menu label="Point Charts"> - </menu> - <menu label="Stock Charts"> - </menu> - <menu label="XY Charts"> - </menu> - <menu label="Combo Charts"> - </menu> - </book> \ No newline at end of file --- 10,19 ---- ! <menu label="Axis Charts - Common"> <menu-item label="Index" href="index.html"/> <menu-item label="Rounding" href="rounding.html"/> ! <menu-item label="Axis Labels" href="axisLabels.html"/> ! <menu-item label="Back" href="../index.html"/> </menu> </book> \ No newline at end of file |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:06
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1835/src/documentation/content/xdocs/userGuide/axisCharts Added Files: index.xml book.xml Log Message: --- NEW FILE: index.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd"> <document> <header> <title>Axis Charts</title> </header> <body> <section> <title>Axis Charts</title> <p> This is the Axis Charts Section </p> </section> </body> </document> --- NEW FILE: book.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> <!-- $Id: book.xml,v 1.1 2004/06/05 14:25:57 nathaniel_auvil Exp $ --> <book software="jCharts" title="Axis Charts - Common" copyright="@year@ The Krysalis Software Foundation" xmlns:xlink="http://www.w3.org/1999/xlink"> <menu label="Axis Charts"> <menu-item label="Index" href="index.html"/> <menu-item label="Common" href="./common/index.html"/> <menu-item label="Area Charts" href="./area/index.html"/> <menu-item label="Bar Charts" href="./bar/index.html"/> <menu-item label="Line Charts" href="./line/index.html"/> <menu-item label="Point Charts" href="./point/index.html"/> <menu-item label="Stock Charts" href="./stock/index.html"/> <menu-item label="XY Charts" href="./xy/index.html"/> <menu-item label="Combo Charts" href="./combo/index.html"/> <menu-item label="Back" href="../index.html"/> </menu> </book> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:06
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/area In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1835/src/documentation/content/xdocs/userGuide/axisCharts/area Added Files: index.xml book.xml Log Message: --- NEW FILE: index.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd"> <document> <header> <title>Area Charts</title> </header> <body> <section> <title>Area Charts</title> <p> This is the Area Charts Section </p> </section> </body> </document> --- NEW FILE: book.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> <!-- $Id: book.xml,v 1.1 2004/06/05 14:25:57 nathaniel_auvil Exp $ --> <book software="jCharts" title="Axis Charts - Common" copyright="@year@ The Krysalis Software Foundation" xmlns:xlink="http://www.w3.org/1999/xlink"> <menu label="Area Charts"> <menu-item label="Simple" href="index.html"/> <menu-item label="Back" href="../index.html"/> </menu> </book> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:05
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/xy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1835/src/documentation/content/xdocs/userGuide/axisCharts/xy Added Files: book.xml index.xml Log Message: --- NEW FILE: index.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd"> <document> <header> <title>Area Charts</title> </header> <body> <section> <title>Area Charts</title> <p> This is the Area Charts Section </p> </section> </body> </document> --- NEW FILE: book.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> <!-- $Id: book.xml,v 1.1 2004/06/05 14:25:57 nathaniel_auvil Exp $ --> <book software="jCharts" title="Axis Charts - Common" copyright="@year@ The Krysalis Software Foundation" xmlns:xlink="http://www.w3.org/1999/xlink"> <menu label="Area Charts"> <menu-item label="Simple" href="index.html"/> <menu-item label="Back" href="../index.html"/> </menu> </book> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:05
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/combo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1835/src/documentation/content/xdocs/userGuide/axisCharts/combo Added Files: book.xml index.xml Log Message: --- NEW FILE: index.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd"> <document> <header> <title>Area Charts</title> </header> <body> <section> <title>Area Charts</title> <p> This is the Area Charts Section </p> </section> </body> </document> --- NEW FILE: book.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> <!-- $Id: book.xml,v 1.1 2004/06/05 14:25:56 nathaniel_auvil Exp $ --> <book software="jCharts" title="Axis Charts - Common" copyright="@year@ The Krysalis Software Foundation" xmlns:xlink="http://www.w3.org/1999/xlink"> <menu label="Area Charts"> <menu-item label="Simple" href="index.html"/> <menu-item label="Back" href="../index.html"/> </menu> </book> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:05
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/stock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1835/src/documentation/content/xdocs/userGuide/axisCharts/stock Added Files: book.xml index.xml Log Message: --- NEW FILE: index.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd"> <document> <header> <title>Area Charts</title> </header> <body> <section> <title>Area Charts</title> <p> This is the Area Charts Section </p> </section> </body> </document> --- NEW FILE: book.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE book PUBLIC "-//APACHE//DTD Cocoon Documentation Book V1.0//EN" "book-cocoon-v10.dtd"> <!-- $Id: book.xml,v 1.1 2004/06/05 14:25:56 nathaniel_auvil Exp $ --> <book software="jCharts" title="Axis Charts - Common" copyright="@year@ The Krysalis Software Foundation" xmlns:xlink="http://www.w3.org/1999/xlink"> <menu label="Area Charts"> <menu-item label="Simple" href="index.html"/> <menu-item label="Back" href="../index.html"/> </menu> </book> |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:01
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/point In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1769/src/documentation/content/xdocs/userGuide/axisCharts/point Log Message: Directory /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/point added to the repository |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:01
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/bar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1769/src/documentation/content/xdocs/userGuide/axisCharts/bar Log Message: Directory /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/bar added to the repository |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:26:01
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/area In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1769/src/documentation/content/xdocs/userGuide/axisCharts/area Log Message: Directory /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/area added to the repository |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:25:59
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/stock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1769/src/documentation/content/xdocs/userGuide/axisCharts/stock Log Message: Directory /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/stock added to the repository |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:25:59
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/xy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1769/src/documentation/content/xdocs/userGuide/axisCharts/xy Log Message: Directory /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/xy added to the repository |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:25:59
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/line In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1769/src/documentation/content/xdocs/userGuide/axisCharts/line Log Message: Directory /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/line added to the repository |
From: Nathaniel G. A. <nat...@us...> - 2004-06-05 14:25:59
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/combo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1769/src/documentation/content/xdocs/userGuide/axisCharts/combo Log Message: Directory /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/combo added to the repository |