diff options
author | Andrew C. Oliver <acoliver@apache.org> | 2002-05-11 19:06:04 +0000 |
---|---|---|
committer | Andrew C. Oliver <acoliver@apache.org> | 2002-05-11 19:06:04 +0000 |
commit | 8105685ae99451ebb4af45040931623273e105ec (patch) | |
tree | c43761ee8df21ff4fa1d9962aad78329a208be77 /src/records | |
parent | 5152cc9a15ff70ade5d6d6ec6baf497b9726e3d0 (diff) | |
download | poi-8105685ae99451ebb4af45040931623273e105ec.tar.gz poi-8105685ae99451ebb4af45040931623273e105ec.zip |
implemented tick record (grphing thing) --
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352617 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/records')
-rw-r--r-- | src/records/definitions/tick_record.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/records/definitions/tick_record.xml b/src/records/definitions/tick_record.xml new file mode 100644 index 0000000000..5a69e019ae --- /dev/null +++ b/src/records/definitions/tick_record.xml @@ -0,0 +1,23 @@ +<record id="0x101e" name="Tick" package="org.apache.poi.hssf.record"> + <suffix>Record</suffix> + <extends>Record</extends> + <description>The Tick record defines how tick marks and label positioning/formatting</description> + <author>Andrew C. Oliver(acoliver at apache.org)</author> + <fields> + <field type="int" size="1" name="major tick type" description="type of major tick mark 0 (none),1 (inside axis line), 2 (outside axis line), 3 (cross axis line)"/> + <field type="int" size="1" name="minor tick type" description="type of minor tick mark 0 (none),1 (inside axis line), 2 (outside axis line), 3 (cross axis line)"/> + <field type="int" size="1" name="label position" decription="label position relative to the axis line 0=invisible, 1=low end,2=high end, 3=next to axis"/> + <field type="int" size="1" name="background" description="1=transparent, 2=opaque"/> + <field type="int" size="4" name="label color rgb" description="an RGB value of the label text where highbyte=0"/> + <field type="int" size="8" name="zero 1" description="must be 0"/> + <field type="int" size="8" name="zero 2" description="must be 0"/> + <field type="int" size="2" name="options"> + <bit number="0" name="auto text color" description="use the quote unquote automatic color for text"/> + <bit number="1" name="auto text background" description="use the quote unquote automatic color for text background"/> + <bit mask="0x1c" name="rotation" description="rotate text (0=none, 1=normal, 2=90 degrees counterclockwise, 3=90 degrees clockwise)"/> + <bit number="5" name="autorotate" description="automatically rotate the text"/> + </field> + <field type="int" size="2" name="tick color" description="HSSFColor for tick label"/> + <field type="int" size="2" name="zero 3" description="must be 0"/> + </fields> +</record> |