Some months ago I spent a few days learning about OracleJET and the knockout framework with Chris Muir. I doubt I'd ever get to that nitty gritty, but it sure is handy to know some of the finer details now that I'm using them in APEX.
I wanted to have a play with the funnel chart. I took an existing query, and quickly busted out a working chart.
Upon playing with the sample chart in the OracleJET Cookbook, I decided I wanted the 3D option.
In the case of this chart style, I think the subtle effect made a big difference.
The Cookbook is a great guide to what you can play with |
The attribute help in the Page Designer is a good start, and always worth checking when playing with a new field.
Page Designer Attribute Help |
I noticed the Sample Charts application did the same thing, but I figured I could take this sample from the help, combined with information from the impressive JET documentation, and try work out the JavaScript myself.
Not all properties are mapped to APEX attributes |
This is what I came up with.
function(options) { options.styleDefaults.threeDEffect = "on"; return options; }
Only to find the customisation from the sample application looked same same, but different.
function( options ){ options.styleDefaults = { threeDEffect: "on" }; return options; }Turns out both are effective, once again demonstrating there's always a few different ways of doing the same thing in JavaScript.
I suspect the first option honours the object notation mentioned in the documentation, while the second assigns the value as a JSON name/value pair. I've seen similar behaviour in jQuery:
$('#item').css('color','blue')
vs
$('#item').css({'color':'blue'})
You can find other examples in your workspace with this query on the dictionary view.
select application_id, page_id, page_name, region_name, chart_type ,javascript_code from apex_application_page_charts where javascript_code is not null;You may also enjoy changing series colours with similar treatment by Colin Archer of Explorer UK.
http://www.explorer.uk.com/customising-chart-colours-apex-5-1/
The German APEX community also has a thorough rundown of JET charting in 5.1
https://apex.oracle.com/pls/apex/germancommunities/apexcommunity/tipp/5841/index-en.html
In my next post I'll explore how to play with these attributes at runtime, not just on render.
No comments:
Post a Comment