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!