Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Custom Legend Item in Bar Chart

bobmaganSep 16 2014 — edited Sep 17 2014

I am on APEX 4.2 and have a bar chart with 2 series. The series are 'Last Week' and 'This Week'. I am trying to display custom items values int he legend next to the appropriate series. I put in the following code, but its not showing the legend at all (just a little square where the default legend used to be). What am I missing?

        <legend enabled="true" ignore_auto_item="True" position="Top" align="Near" elements_layout="Vertical">

          <title enabled="False"/>

        <items>

          <item source="Series" series="Last Week">

            <format><![CDATA[{%Icon} Last Week - &P13_21_AVG_LAST_WEEK.]]></format>

          </item>

          <item source="Series" series="This Week">

           <format><![CDATA[{%Icon} This Week - &P12_21_AVG_THIS_WEEK.]]></format>

          </item>

         </items>

          <font family="Tahoma" size="10" color="0x000000" />

        </legend>

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 15 2014
Added on Sep 16 2014
7 comments
3,740 views