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!

3D BAR Chart using Oracle Jet

medac01Mar 19 2019 — edited Mar 19 2019

Hello Team,

I am trying to convert 2D bar chart to 3D bar chart using the Ojet code like below options. The below code is called on page load of a dynamic action as Execute java Script

$("#Bal_Year_Chart_jet").ojChart({styleDefaults.threeDEffect :'on'});

Or

apex.region("Bal_Year_Chart_jet").widget().ojChart({style-defaults.three-d-effect :'on'});

or

apex.region("Bal_Year_Chart_jet").widget().ojChart({styleDefaults.threeDEffect :'on'});

Here 'Bal_Year_Char' is static ID of my chart region.

I also tried below code at Advanced JavaScript Code which actually works for Pie and funnel charts but not Bar chart :

function( options ){

    options.styleDefaults.threeDEffect = "on";

    return options;

}

I dont see any affect of 3D after adding the code. Appreciate any suggestions.

Version: APEX 5.1.2

Thank you!

This post has been answered by Hilary Farrell-Oracle on Mar 19 2019
Jump to Answer
Comments
Post Details
Added on Mar 19 2019
1 comment
1,145 views