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!

Gantt Chart - Multiple Tasks Per Row

hari-OracleMay 9 2019 — edited May 15 2019

Hi Team,

APEX Version: 18.2.0.00.12

I am trying to create Gantt Chart with multiple tasks per row option. My expected output is like below.

https://www.oracle.com/webfolder/technetwork/jet/jetCookbook.html?component=gantt&demo=multipleTasks

I did set-up a simple example to demonstrate my problem. (not in apex.oraclecorp.com as it's not on APEX 18.2)

Gantt Chart Series query:

SELECT 1 emp_id, 'Srihari' as emp_name, 1000 task_id, 'task 1000' task_name, sysdate - 5 start_date, sysdate - 3 end_date, 0 status from dual

union

SELECT 1 emp_id, 'Srihari' as emp_name, 1001 task_id, 'task 1001' task_name, sysdate - 1 start_date, sysdate + 1 end_date, 0 status from dual

union

SELECT 1 emp_id, 'Srihari' as emp_name, 1002 task_id, 'task 1002' task_name, sysdate + 2 start_date, sysdate + 3 end_date, 0 status from dual

union

SELECT 2 emp_id, 'Murari' as emp_name, 1003 task_id, 'task 1003' task_name, sysdate - 5 start_date, sysdate + 1 end_date, 0 status from dual

union

SELECT 2 emp_id, 'Murari' as emp_name, 1004 task_id, 'task 1004' task_name, sysdate + 2 start_date, sysdate + 5 end_date, 0 status from dual

Gantt Chart Series Attributes:

pastedImage_2.png

P16_START_DATE and P16_END_DATE are page items and I am setting initial values to these page items during page load.

But, when I run the page it says "No Data to Display Message".

pastedImage_3.png

Any idea what could be wrong with this Gantt chart? Am I missing something obvious somewhere? Please advise.

Regards,

Srihari

This post has been answered by Hilary Farrell-Oracle on May 9 2019
Jump to Answer
Comments
Post Details
Added on May 9 2019
5 comments
1,441 views