I am trying to create an Oracle BI Publisher chart with multiple series, but I'm not sure how to structure my xml in order to get the multiple series. My xml is:
<?xml version="1.0" ?>
<report>
<rowd>
<cddiv>Self</cddiv>
<rowdx>
<cdtxt>Time</cdtxt>
<cdval>120</cdval>
</rowdx>
<rowdx>
<cdtxt>Interest</cdtxt>
<cdval>200</cdval>
</rowdx>
</rowd>
<rowd>
<cddiv>All excluding self</cddiv>
<rowdx>
<cdtxt>Time</cdtxt>
<cdval>110</cdval>
</rowdx>
<rowdx>
<cdtxt>Interest</cdtxt>
<cdval>190</cdval>
</rowdx>
</rowd>
</report>
Where I set cdtxt
as the Labels, cdval
as the Values and cddiv
as the Series on the chart wizard in Word. However this brings back a blank chart. Does anyone have an example of what the xml should be for multiple series or can anyone correct mine?