diff options
author | Glen Stampoultzis <glens@apache.org> | 2002-03-18 11:03:56 +0000 |
---|---|---|
committer | Glen Stampoultzis <glens@apache.org> | 2002-03-18 11:03:56 +0000 |
commit | 8856db3c7f70aef2edaa7b4a3c9d6a54035a666a (patch) | |
tree | 770a2762525c8b88fb88131e88ca40d93d3f1bb6 /src/records | |
parent | 94f7dc0ef5238acc6ba9dff967c6cfe75f3fcce8 (diff) | |
download | poi-8856db3c7f70aef2edaa7b4a3c9d6a54035a666a.tar.gz poi-8856db3c7f70aef2edaa7b4a3c9d6a54035a666a.zip |
New record... Slowly but surely. Wonder if I have enough to make a whole chart yet?
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352246 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/records')
-rw-r--r-- | src/records/definitions/category_series_axis_record.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/records/definitions/category_series_axis_record.xml b/src/records/definitions/category_series_axis_record.xml new file mode 100644 index 0000000000..d93b28fc8f --- /dev/null +++ b/src/records/definitions/category_series_axis_record.xml @@ -0,0 +1,16 @@ +<record id="0x1020" name="CategorySeriesAxis" package="org.apache.poi.hssf.record"> + <suffix>Record</suffix> + <extends>Record</extends> + <description>This record refers to a category or series axis and is used to specify label/tickmark frequency.</description> + <author>Glen Stampoultzis (glens at apache.org)</author> + <fields> + <field type="int" size="2" name="crossing point" description="axis or category crossing point for 2d charts"/> + <field type="int" size="2" name="label frequency" description="label frequency"/> + <field type="int" size="2" name="tick mark frequency" description="tick mark frequency"/> + <field type="int" size="2" name="options" description="various options"> + <bit number="0" name="value axis crossing" description="set true to indicate axis crosses between categories and false to cross axis midway"/> + <bit number="1" name="crosses far right" description="axis crosses at the far right"/> + <bit number="2" name="reversed" description="categories are displayed in reverse order"/> + </field> + </fields> +</record> |