mirror of https://github.com/apache/poi.git
AxisOptionsRecord -- This here "Misc" record (like every other record
in microsofts formats) defines various behaviors to do with Axis options. (graphing stuff) PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352615 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8e86d81e5b
commit
da18857d97
|
@ -0,0 +1,26 @@
|
|||
<record id="0x1062" name="AxisOptions" package="org.apache.poi.hssf.record">
|
||||
<suffix>Record</suffix>
|
||||
<extends>Record</extends>
|
||||
<description>The axis options record provides unit information and other various tidbits about the axis.</description>
|
||||
<author>Andrew C. Oliver(acoliver at apache.org)</author>
|
||||
<fields>
|
||||
<field type="int" size="2" name="minimum category" description="minimum category on axis"/>
|
||||
<field type="int" size="2" name="maximum category" description="maximum category on axis"/>
|
||||
<field type="int" size="2" name="major unit value" decription="is this like where it draws the line?"/>
|
||||
<field type="int" size="2" name="major unit" description="units vs values..dunno"/>
|
||||
<field type="int" size="2" name="minor unit value" description="is this where it draws the tick marks?"/>
|
||||
<field type="int" size="2" name="minor unit" description="dunno exactly"/>
|
||||
<field type="int" size="2" name="base unit" description="dunno exactly"/>
|
||||
<field type="int" size="2" name="crossing point" description="where the axes cross"/>
|
||||
<field type="int" size="2" name="options">
|
||||
<bit number="0" name="default minimum" description="use the default minimum category"/>
|
||||
<bit number="1" name="default maximum" description="use the default maximum category"/>
|
||||
<bit number="2" name="default major" description="use the default major unit"/>
|
||||
<bit number="3" name="default minor unit" description="use the default minor unit"/>
|
||||
<bit number="4" name="isDate" description="this is a date axis"/>
|
||||
<bit number="5" name="default base" description="use the default base unit"/>
|
||||
<bit number="6" name="default cross" description="use the default crossing point"/>
|
||||
<bit number="7" name="default date settings" description="use default date setttings for this axis"/>
|
||||
</field>
|
||||
</fields>
|
||||
</record>
|
Loading…
Reference in New Issue