new object link record (Graphign)

PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352630 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew C. Oliver 2002-05-18 16:23:30 +00:00
parent 23bcf0f5b9
commit 3e5e8d0275

View File

@ -0,0 +1,26 @@
<record id="0x1027" name="ObjectLink" package="org.apache.poi.hssf.record">
<suffix>Record</suffix>
<extends>Record</extends>
<description>Links text to an object on the chart or identifies it as the title.</description>
<author>Andrew C. Oliver (acoliver at apache.org)</author>
<fields>
<field type="int" size="2" name="anchor id" description="what is the text object linked to">
<const name="chart title" value="1"/>
<const name="y axis" value="2"/>
<const name="x axis" value="3"/>
<const name="series or point" value="4"/>
<const name="z axis" value="7"/>
<testresult value="3"/>
</field>
<field type="int" size="2" name="link 1" description="if this is a data series or point, this holds a link to that point or series">
<testresult value="0x00"/>
</field>
<field type="int" size="2" name="link 2" description="if this is a data series or point, this holds a link to that point or series">
<testresult value="0x00"/>
</field>
</fields>
<testdata>
03 00 00 00 00 00
</testdata>
<testsize>10</testsize>
</record>