From: Nathaniel G. A. <nat...@us...> - 2004-06-04 02:45:42
|
Update of /cvsroot/jcharts/krysalis-jcharts/src/documentation/content/xdocs/userGuide/axisCharts/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22953/src/documentation/content/xdocs/userGuide/axisCharts/common Added Files: book.xml index.xml rounding.xml axisLabelRotation.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>Index</title> <authors> <person name="Nathaniel Auvil" email="nat...@so..."/> </authors> </header> <body> <section> <title>Index</title> <p> This Section of the User Guide contains things which are common to most if not all of the Axis Charts. </p> </section> </body> </document> --- NEW FILE: rounding.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd"> <document> <header> <title>Rounding</title> <authors> <person name="Nathaniel Auvil" email="nat...@so..."/> </authors> </header> <body> <section> <title>Rounding</title> <p> By default, the Y-Axis rounds to the nearest whole number. This can be changed by using a method on the DataAxisProperties Object. </p> <note> Note: when using a user defined scale, be aware your increment will be rounded by this rounding factor. </note> <p> The following example sets the y-axis to round to the nearst 1/100 or 10 to the -2'nd power. </p> <source> DataAxisProperties dataAxisProperties= (DataAxisProperties) axisProperties.getYAxisProperties(); dataAxisProperties.setRoundToNearest( -2 ); </source> <figure src="images/userGuide/axisCharts/axisRounding.png" alt="Axis Rounding"/> </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"> <!-- 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" 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="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> --- NEW FILE: axisLabelRotation.xml --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd"> <document> <header> <title>Axis Label Rotation</title> <authors> <person name="Nathaniel Auvil" email="nat...@so..."/> </authors> </header> <body> <section> <title>Axis Label Rotation</title> <p> </p> <source> </source> <figure src="images/userGuide/axisCharts/axisRounding.png" alt="Axis Rounding"/> </section> </body> </document> |