ADF Data visualization Gantt chart displaying 10 columns only

hi
i am using Gantt chart and it is only displaying 10 columns from the view object the 11 column is not visible
how can i solve this??
also these columns are taking so much space, and i want to make their width smaller, but when i change the style --> box --> width, the column alone change its width but without the header.
thanks

People are not prone to answer questions that are not really a problem. You want to know something about a free product, install it and see for yourself. In any case spreading your question around is not going to help you, the people who know about ADF are still going to be looking in the ADF forum. If you don't get an answer there, what chance do you think you have that you'll get one here where it is off-topic?
I'll close with a word of advice: you generally pay for quality. If you want professional looking charts, you'll probably have to look at commercial products.

Similar Messages

  • ADF Data Visualization

    Hi all,
    a simple question how can i use adf data visualization
    i can not find them in component palette?
    do i need to install something?
    if there are examples please provide me with it
    than you 4 everybody

    The Question in other way :
    How can i Drag and drop my view object in my jsf page as a graph ( Pie Chart,Gannt Chart,.....)
    Thank you all,

  • Libraries need for ADF Data visualization

    Hi all,
    I want to ask list of libraries which needed by ADF Data visualization.
    Thanks
    Hadi Wijaya

    Hi,
    since you ask this question on the JDeveloper 10.1.3 forum, just be aware that DVT components work on JSF 1.2 only and not in JDeveloper 10.1.3
    Frank

  • Using the Oracle ADF Data Visualization Components in a standard JSF enviro

    Hi,
    I have asked this question on the JDeveloper and ADF forum, haven't gotten a response yet:
    Using the Data Visualization Components from ADF in a JBoss 7.1.1
    .. but I would like to ask the question here as well if anyone have used the data visualization components from Oracle ADF Essentials .. the free version ... using the graph components in general, but I am looking at specifically using the gantt chart component in particular ... in a standard JSF environment ( e.g. Tomcat + Mojarra, or JBoss with the built-in Mojarra implementation ) ??
    I know there are other JSF charting components out there ...like the ones from PrimeFaces, but the gantt chart from ADF looks more ... well .. professional.

    People are not prone to answer questions that are not really a problem. You want to know something about a free product, install it and see for yourself. In any case spreading your question around is not going to help you, the people who know about ADF are still going to be looking in the ADF forum. If you don't get an answer there, what chance do you think you have that you'll get one here where it is off-topic?
    I'll close with a word of advice: you generally pay for quality. If you want professional looking charts, you'll probably have to look at commercial products.

  • ADF swing: JTabbedPane does not display column names.

    Hi all,
    I have created an ADF Panel, which allows the user to run a few simple queries against an Oracle database done using ADF view objects and ADF view links and ADF application module.
    From the data control area I drag and drop a view link containing a query into a JTabbedPane. But when I run the ADF panel, JTabbedPane does not display the column headers from the SQL as opposed to JScrollPane which does.
    Suppose you do a select * from departments(dep_id, manager, state_cd), you will see all column headers meaning dep_id, manager, state_cd, and under each column the corresponding data which was retuned by the SQL if you use JScrollPane. But if you use you use JTabbedPane then you would only see the data which was retuned by the SQL without seeing the column header names meaning dep_id, manager, state_cd.
    What do I need to do to make JTabbedPane display columns headers?
    I would appreciate your input.
    Thanks.
    Bobby A.

    Hi,
    JScrollPane should be used. You can add this into a JTabbedPane if you like. Not all Swing panel show table headers
    Frank

  • Gantt chart shows points only

    Hi,
    we are developing a Gantt chart in an ABAP webdynpro. The chart is not a problem, however only points are being displayed, not bars - as expected.
    The same problem was described for J2EE webdynpros. Unfortunately, the way it was solved there does not seem to work in ABAP.
    Is there anybody who can advise on this?
    Thanx, Rene

    A colleague of mine solved the problem. The attribute 'Marker Shape' of the default series must be set to None.
    Cheers,
    Rene

  • Problem with gantt chart displaying - Apex4.2

    Hi I'm using Apex 4.2 on localhost and
    I have got three tables: employee, engineer, dates
    -> engineer table is a specification of employee table, that means in employee you can find also the
    names of the engineers. Engineer only has an additional attribute.
    Here's the structure of the three tables:
    employee (e_id, lastname, surname....)
    engineer (e_id, attribute)
    appointment (a_id, e_id,start, end)
    Now my problem: By using the gantt chart the xml doesn't want to show the names of the engineers.
    If I only use this sql statement everything works but I only have the e_id from my engineer table:
    select
    null link,
    a.e_id,
    (select e_id from engineer where e_id = a.e_id) Engineer,
    null parent_id,
    a.start,
    a.end
    from appointment a
    If I try to use this statement in order to see the names of the employees no chart will be shown,
    only xml error:
    select
    null link,
    a.e_id,
    (select emp.lastname from employee emp, engineer e where emp.e_id = e.e_id and e.e_id=a.e_id) Engineer,
    null parent_id,
    a.start,
    a.end
    from appointment a
    I also created a view which combines the lastname from employee and the e_id from engineer
    but same problem.
    If I try:
    select
    null link,
    a.e_id,
    (select e_id from gantt_view where e.e_id=a.e_id) Engineer,
    null parent_id,
    a.start,
    a.end
    from appointment a
    Then I'll see e_ids in my gantt chart but if I want to see my employee names
    with this statement:
    select
    null link,
    a.e_id,
    (select lastname from gantt_view where e.e_id=a.e_id) Engineer,
    null parent_id,
    a.start,
    a.end
    from appointment a
    Nothing is shown on the gantt chart.
    I tested all sql statements on sql developer.
    There I was able to see my employee names.
    But for gantt charts it doesn't work.
    Any solutions?

    Great!
    Of course, hard to diagnose when there's nothing to see.
    Here's an old message in a thread from 2010. (To give credit, it's from Hilary Farrell.)
    >
    You are correct, the syntax outlined in the error message is incorrect, and I've logged bug 9799373 to track this. As a workaround, you can view sample syntax for Gantt charts on the 'Query' page of the Create wizard, in the 'Chart Query Example for Gantt' Show/Hide region below the text area for entering your chart query, and also in the Oracle APEX 4.0 User's Guide that will be available with our new release. Just in case other users hit the same issue and are unsure of the expected format:
    Chart Query Examples for Project Gantt Charts:
    SELECT NULL LINK,
    TASK_NAME NAME,
    TASK_ID ID,
    NULL PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END,
    STATUS_NUMBER PROGRESS
    FROM TASKS
    SELECT 'f?p=4000:2:'||:APP_SESSION||':::P2_ID:'||ID LINK
    TASK_NAME NAME,
    TASK_ID ID,
    PARENT_TASK_ID PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END,
    STATUS_NUMBER PROGRESS
    FROM TASKS
    SELECT NULL LINK,
    TASK_NAME NAME,
    TASK_ID ID,
    NULL PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END,
    STATUS_NUMBER PROGRESS,
    START_DATE-3 PLANNED_START,
    END_DATE+1 PLANNED_END
    FROM TASKS
    Chart Query Examples for Resource Gantt Charts:
    SELECT NULL LINK,
    RESOURCE_ID ID,
    NULL NAME,
    NULL PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END
    FROM TASKS
    SELECT 'f?p=4000:2:'||:APP_SESSION||':::P2_ID:'||ID LINK
    RESOURCE_ID ID,
    RESOURCE_NAME NAME,
    PARENT_ID PARENT_ID,
    START_DATE ACTUAL_START,
    END_DATE ACTUAL_END
    FROM TASKS
    Thanks for reporting this issue, and I'm happy you were able to successfully generate your chart.
    Regards,
    Hilary
    Can you show us the query you are using?
    Oh. And what are the data types and lengths of your data?
    Howard

  • ADF Data Visualizations group not showing up in Component Palette

    I apologize for my ignorance, but I cannot find how to solve this problem. I am trying to use the data visualization components such as graphs but my component palette does not show this. It does show ADF Faces, JSF, and some others, but not this. I tried adding more libraries to my project's properties, but it does not show up. I am using:
    JDeveloper
    Studio Edition Version 11.1.1.2.0
    Build JDEVADF_11.1.1.2.0_GENERIC_091029.2229.5536
    Any ideas?
    thanks,
    Kerry

    Go into project properties -> JSP libraries and make sure you add the data visualization tag library.

  • Display Column only when Current Year Selected

    Hi Gurus,
    1)I have a Req where in I need to Display a Column only when 2012 is selected,It shouldn't appear when i select 2010 & 2011 in the Prompt.
    2)I have to display a column only when the Last month of the Quarter is selected.
    Any help???

    Hi,
    Make it two reports, one with the column and the other report without the column. Place both the reports in two different dashboard sections and use conditional show/hide section as explained here,
    http://total-bi.com/2011/01/obiee-hide-show-sections/
    Regards,
    Dpka

  • Hiding lines on a line chart (Display marker only)

    I would like to only view Markers along with bars in combination chart. Need to make lines transparent or hidden (disable).
    The X category  axis is (different companies), so connecting line is not appropriate.
    There are setting to hide other elements: Markers (Enable or Transparency), Column (Transparency).

    Hi,
    I don't think that is possible out-of-the-box. What you could do is the following:
    1) Create a Bar chart
    2) Create a XY chart (this will be your markers). Create a new series on the XY chart. Point the x-values to the x-axis labels on you bar chart. Point the y-values to the values you would like to display as markers.
    3) Disable display of most of the elements of the XY chart, e.g. chart back ground, legend, vertical axis, gridlines etc.
    4) Move the XY chart on top of you Bar chart
    This will work, but might take a little fiddling :o)
    Hth.,
    Jacob

  • Editable and Read-Only Date Picker have different display formats -- Bug?

    Hi all,
    This is a follow on to a previous posting about getting a Date Picker field to display read-only (Date Picker and Read-Only Condition works on LAST state of element
    Now past that hurdle, I have noticed something about the date picker field when it is displays read-only. Namely, the date format is not the format selected, nor does the read-only date format comply with the format mask in the source section.
    I've modified my small test app to work as intended in order to demonstrate this feature. I also opened it up so everyone can see it <blush>. You can find it here: http://htmldb.oracle.com/pls/otn/f?p=42513: Please navigate to the Update Project tab.
    When a project in Program One through Four is selected (which has a Spec Committed date), the date is displayed DD-MON-YY format. When a project the other Programs (which do not have Spec Committed dates at the time of this writing) are selected, and a date value selected with the date picker, the date is displayed in the anticipated DD-MON-YYYY format.
    Anyone else notice this, or have I just missed something obvious?
    Thanks,
    Petie

    I'm not sure why this happens but to work around it I added this before header process code to the page:
    execute immediate 'alter session set nls_date_format = ''DD-MON-YYYY''';
    Scott

  • Gantt Chart in Service Resource planning

    Hi All,
               I want help on Gantt Chart.I want to modify the gantt chart .can anybody tell me plaese where we can chage the gantt chart.My basic requirement is that i want display the multiple line in tooltip.currently his display the aal the data in one row.My second requirement is that ,i want to display the only 1 week when i display gantt chart as a weekly mode.where should i have to go and change the functionality.i think gantt chart display on web ui using java application.Please help me on this.
    Thanks in Advance..............
    Vishwas Sahu

    Hello Bhanu ,
    Go thru the link http://help.sap.com/saap/sap_bp/CRM_XX/HTML/index.htm
    and open C3O document for more information on Service resource planning.

  • Gantt chart wad 7.0

    Hi
    I need to show one query data as Gantt chart in WAD.My user will see this report in his portal...My requirement is like this:
    In rows panel of query definition I have Project ID....
    In columns panel of query definition I have around 10 Restricted keyfigures...
    The other customer requirements are:Chart should only show the data that falls in between start date and end date ,I enter through variables...
    He should be able to choose which Keyfigures he want to see in the Gantt chart....
    Chart should show Todays date as line somewhere in middle of chart....
    is it possible to achieve this through WAD...(I am new to WAD...I tried creating one test template...its crashing showing its too much data to handle....I have records on 14 pages when I executed the query in browser)
    Do I need to have time characteristic as keyfigure in cube or in query inorder to achieve this....
    is there any other tool,where I can easily implement this.............
    Thanks.

    Hi Priya,
    Thanks for your reply.
    1.I have read in help.sap.com that special things with Gantt chart is...in the dataprovider we need to use time as keyfigure.Inorder to achieve this,we need to have this time as keyfigure in cube itself.I check my cube and we have some time keyfigures.I tried putting variable on this time keyfigure in query designer but its not working.how can we restrict time keyfigure so user will have an option to give input for which time period he wants the see the Gantt Chart.
    2.I have to use this Gantt chart to show projects....When I checked,we have many projects that needs to be shown(you can count more than thousand)...and I am getting error when I tried to implement Gantt chart in WAD saying webitem is too small to show data or something....Is it 'not so good' idea to use Gantt chart to show so many projects....?
    3.how to really design this in a web template...
    First I dragged a container web item...then I dragged a Gantt chart web item into it having smaller size than Container web item...is it the right way?where can I put the navigation pane webitem as you suggested above?is there any thing more I need to add to get the above requirement?
    Thanks for your time and help.
    Regards.

  • Unable to find data visualization component in JDEV 11g Preview 4

    we have installed jdev11g preview 4 and we are unable to find ADF data visualization component.
    Is there anyway we could add this component.
    Thanks in Advance
    Sabir

    Hi,
    in the component palette (while having an ADF Faces page open), right click and then choose "Edit Libraries" from the context menu. Choose the DVT libraries and toggle them to the selected libraries. The DVT components should show now
    Frank

  • OBIEE Data  visualization

    Is there a data visualization software like XCELSIUS (SAP BUSINESSOBJECTS) in OBIEE ?
    Thanks
    Srinidhi Rao
    Edited by: 834043 on Feb 4, 2011 12:01 PM
    Edited by: 834043 on Feb 4, 2011 9:24 PM

    Coming to your other query regarding possibility to use visualization components developed using "ADF Data Visualization" in OBIEE, yes OBIEE 11g uses ADF 11g. How do you do this? Adequate information is not yet available.

Maybe you are looking for

  • 32 bit vs 64 bit 11.1.1.3

    Need to install Essbase, Planning, FDM, maybe ODI. Since I will be needing FDM, I obviously need to stick to a Windows Server. My question is, from reading the documentation I am coming to the conclusion that sticking to a 32 bit Server is probably t

  • Error when clicking login server administration link

    Hi I am using Portal 3.0.7 on NT. When I click the login server administration link in the services portlet under the administer tab I get the following error ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "PORTAL30_SSO.WWSSO_LS_PR

  • Significance of "90 day baseline" keyfigure in DP

    Folks What is the significance of "90 day baseline" keyfigure in DP and how is this value populated. Is the forecast for a particular month aggregated into this keyfigure or is it done something differently? any information share don this would prove

  • How to export/import UDQ

    Hi Experts, I want to distribute the user defined query. Here is the steps: 1. Export the specific one 2. Import the specific one Here is my question 1. How can I get the query list? I cannot find method to do it, which like getBPlist. If I can get i

  • HT4796 how do i transfer all my content from one windows 7 laptop to another?

    i think ive transferred all the content correctly, but the music is asking to locate the file when i click on it.  how do i finish the migration so the titles are seeing the content?