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!

How to use APEX_JSON output as data source for charting libraries?

Padmocho-OracleMay 7 2017 — edited May 7 2017

Hi All,

I have the following code for a pl/sql region:

DECLARE

  l_cursor SYS_REFCURSOR;

BEGIN

apex_json.initialize_output(p_http_header => false);

OPEN l_cursor FOR select * from st;

   apex_json.write(l_cursor);

END;

This gives me a nice JSON-formatted output.

Now, I would like to use is as data-source for one of the popular charting librararies like fusion-charts, anycharts, etc. which accept a JSON format.

How can I do that?

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 4 2017
Added on May 7 2017
6 comments
615 views