Gantt Chart Related Problem

Project Link:
PPPM
How to solve these problems.
Problem 1:
I have to scroll both the Gantt Chart and Task List scroll
simultaneously. When i scroll Gantt Chart , then at the same time
Task List and vice versa.
Problem 2:
How to stop Gantt Chart header movement stop when scroll the
Gantt Chart.
Problem 3:
In the Gantt Chart Node, there are 2 section. One is dark
section and other is lite section. I have to slide these scctions
like like HDevidedBox effect.
Please help me out from these problems.

Hi Vedant,
values are displayed in pie chart their label is not display.
So you're able to view the value and label information when you hover over a slice i.e. viewing the tooltip, but you can't see the actual label for each slice of the pie. If you're not seeing all of the labels for the slices of the Pie chart, then this could due to a couple of reasons:
1) the length of the label
2) the position of the label
3) the size of the chart
Keep in mind that displaying all 41 labels on the chart could result in an extremely cluttered looking chart. AnyChart controls the visibility of the labels, depending on the above factors. So if your labels are quite lengthy, for example, and they are positioned to be displayed outside the chart, then AnyChart will display what labels it can for the given chart size. To work around this, having tooltips enabled is a good starting point. Alternatively, you could look at decreasing the length of the label text, changing the label position or even increasing the size of the chart. For further information on the label formatting, I would recommend reviewing AnyChart's online documentation, here: http://anychart.com/products/anychart/docs/users-guide/label-text-formatting.html?fromtree.
Regards,
Hilary

Similar Messages

  • Gantt Chart Data not getting pouplated

    Hello,
    I am using Gantt charts in apex for showing up large data.
    I am following this method to store huge data which is in xml(more than 32k) into a page item. (http://apex.oracle.com/pls/otn/f?p=35254:5:877211585824396::NO).
    I set my session state like APEX_UTIL.set_session_state (p_name => 'P10_DATA', p_value => APEX_APPLICATION.g_x01) and pass this item into gantt chart
    The problem i am facing is that even though i see that the value of P10_DATA is populated with all the data during debugging, upon opening session and checking the item's value, it displays null !!!
    Note:For data with less than 32k, Gantt chart loads correctly and the item's value gets saved.
    Anyine please help me with this..
    Regards,
    Uday

    Hello,
    I am using Gantt charts in apex for showing up large data.
    I am following this method to store huge data which is in xml(more than 32k) into a page item. (http://apex.oracle.com/pls/otn/f?p=35254:5:877211585824396::NO).
    I set my session state like APEX_UTIL.set_session_state (p_name => 'P10_DATA', p_value => APEX_APPLICATION.g_x01) and pass this item into gantt chart
    The problem i am facing is that even though i see that the value of P10_DATA is populated with all the data during debugging, upon opening session and checking the item's value, it displays null !!!
    Note:For data with less than 32k, Gantt chart loads correctly and the item's value gets saved.
    Anyine please help me with this..
    Regards,
    Uday

  • Problem with Project 2007 gantt chart in Acrobat X

    Good morning,
    We are experiencing an issue with certain, rather large gantt charts in Project 2007 when converting them to PDF using Acrobat X. The issue is that the last portion of the chart is broken when converted to PDF. The chart will print properly when sent to a real printer, and it also renders correctly in the print preview. Here is an example of the issue:
    As you can see, it has broken the last section of the chart and "stretched" the bars across the page. I couldn't find anything in the knowledge base that related to this issue, so any assistance would be apreciated.

    Unfortunately it seems that this is still occuring, I guess nobody has ever come across this issue?

  • Problem: getting task id in Gantt chart

    Hello!
    I'm developing project Gantt chart, now I'm implementing task update and creation.
    I have a following problem: when I try to get a task id to update it using getTaskId() method of DataChangeEvent object, I get a java.lang.IndexOutOfBoundsException.
    Here is part of code of my data change listener:
    public void handleDataChanged(DataChangeEvent evt)
          int _type = evt.getActionType();
          if (_type == DataChangeEvent.UPDATE)
            BindingContainer bindings = getBindings();
            OperationBinding operationBinding = bindings.getOperationBinding("setCurrentRowWithKeyValue");
            Map params = operationBinding.getParamsMap();
            params.put("rowKey", evt.getTaskId()); // throwing exception in this line - evt.getTaskId()
            operationBinding.execute();   
    }And here is exception stack trace:
    <RegistrationConfigurator><handleError> Server Exception during PPR, #1
    javax.el.ELException: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at com.sun.el.parser.AstValue.invoke(AstValue.java:161)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodExpression(UIXComponentBase.java:1303)
         at oracle.adf.view.faces.bi.component.gantt.UIGantt.broadcast(UIGantt.java:1776)
         at oracle.adf.view.faces.bi.component.gantt.UIProjectGantt.broadcast(UIProjectGantt.java:399)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:444)
         at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:541)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ApplyRequestValuesCallback.invokeContextCallback(LifecycleImpl.java:1175)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:303)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(ArrayList.java:547)
         at java.util.ArrayList.get(ArrayList.java:322)
         at oracle.adf.view.faces.bi.event.DataChangeEvent.getTaskId(DataChangeEvent.java:461)
         at view.backing.GanttPage.handleDataChanged(GanttPage.java:217)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         ... 55 moreDo you have any suggestions about this issue?
    Thank you in advance!

    Hi Benny
    Make sure the system in the system landscape has end user access as a permission for all the users who should access it.
    Cheers

  • Problems with BusinessGraphics Gantt Chart: WebDynpro 7.1 SP3

    Hi,
    i tried the BusinessGraphics Gantt Chart and went through the Code Example for Displaying a Gantt Chart on:
    http://help.sap.com/saphelp_nw04/helpdata/en/a8/1cd93f5e0f9015e10000000a155106/content.htm
    Unfortunately my gantt does not look and behave like it should:
    1)  The bars are only small sqares in the middle of one day. I use the same data as in the sample, so the bars should be a couple of days long
    2) I added an action, added an EventID to the series and to the point, mapped the parameters. When clicking a point a roundtrip is done. I write a success message with the eventID but often the Gantt Picture is a broken image after this (small red cross).
    3) The tooltip of the point is not shown in the chart when pointing on the square
    Can anybody help, please?
    Thanks
    Frank

    Thanks a lot! This solved one of three problems. The trick is that you can set the marker for the points (without any effect) and for the series (with effect).
    The tooltip shows up now, too. No idea why now and not before...

  • Problems in designing Gantt Charts through Web Dynpros

    Dear friends,
    We are having a situation in which we need to display the series of production orders in shop floor in a gantt chart having a specific start & end date and time.
    To implement this scenario, we are using Gantt Chart tool available in Web dynpro. In the gantt chart tool we are passing an XML file edited as per data to display production orders starting and ending at particular date and time.
    Now we are facing following problems to design this case.
    1. We are currently using type repository <TypeRepository href="apps/gantt/cprojects/TypeRepository.xml" version="1.0"> as a base type repository to define our XML file. This type repository we found in one of Gantt chart test examples. We believe if we are able to view this file we can know what types are available and how can we use their elements and attributes to define graph in XML file. Please help us how can we view this type repository.
    2. Currently we are viewing scale on Gantt chart only on date base. Can we view the scale at time base too? If yes, how?
    3. Currently we are manually editing our XML file to add up data that we want to display in our gantt charts. We would like to know what is standard procedure to edit XML file in a program. Additionally if you can tell us the functional modules or class-methods to edit XML file in program, this would be very helpful.
    Your kind help would be highly appreciated.
    Best regards,
    Navin Guru

    About where to find file apps/gantt/cprojects/TypeRepository.xml.
    Maybe it's not the best way, but i had access to portal server files (access to /usr/sap directory on server where enterprise portal was installed). And i found it there by jnet search criteria.
    In my case it layed in the following place:
    \usr\sap\<SID>\J01\j2ee\cluster\apps\sap.com\tcwddispwda\servlet_jsp\webdynpro\resources\sap.com\tcwddispwda\root\global\activeComp\

  • 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

  • Problems with Gantt Chart

    Hi,
    I have a Gantt Chart in my page, but there is something wrong with the scales; the major scale says, for example, "Monday, Oct 12", but the minor scale says "S" for sunday and then the major scale says "Tuesday, Oct 13" and the minor "Monday" and so on; they doesn´t correspond to each other... This is just happening in spanish, in english everything is fine, I don't know what can I do to fix this.
    I have another problem in the same Gantt: one task has "16/10/2009 08:00:00 a.m." for start date and "17/10/2009 08:00:00 p.m." for end date, which gives a duration of 2 days, but in the gantt it is displayed as a 3 days duration!! this happen for every task in the gantt. I've been testing and I found that if I change the end date to "17/10/2009 06:00:00 p.m." (just changing 8 to 6 pm) the duration is displayed just fine, with the 2 days it should be. Actually this strange behavior happens only when the hour is equal or grater than 8:00pm. I've searched in the developers guide but it doesn't say anything about this; I don´t know if the OAF Gantt use some e-business parameter, or something; I really don´t know what can be happening.
    I hope you can help me!
    Thanks and regards,
    Carlos V

    Not sure about changing the scale at runtime but from what I've learned, if it can't be done in Crystal Reports itself - it can't be done via code.  And in CR the only way I know of is to do the multiple charts in multiple subsections and conditionally suppress based on the number of records (Projects in your case).
    You could go to the development forum and ask the question about doing it programatically.

  • Gantt Chart Series bar display problem

    Dear colleague
    Am looking for your help¡K
    I developed Gantt Chart business graphics exactly as explained in the tutorial, but the result I got just display points instead of displaying bar as shown the graphic pasted in the tutorial.
    Can you tell what is the option or the property that I supposed to modify to display that bar.
    This is my be easy for you, but for me it¡¦s difficult since I don¡¦t know it.  ƒº
    Regards,
    Husain..

    Thanks Erin for your immediate reply...
    I set the Marker shape to None, but still I see only points, is there any property, my effect that.
    Regards'
    Husain

  • Multi Resource Scheduling (MRS) - resources not visible on Gantt chart mode

    I need your expertise help to resolve this issue.
    We are on MRSS 7.0 and ECC 6.0.
    When I run transaction /MRSS/PLBOORG, I am able to see the demands show up.
    However from resources point of view, I can see them on a table based planning but not able to see the resources in the Gantt chart mode.
    The user interface profile (for layout) is set up for 'Planning board for DPD Gantt' as well as for 'Planning board for Resources'.
    Reports to transfer the resources from ECC to MRS have been executed.
    Any help to fix this issue would be greatly appreciated.
    Thanks
    Venky

    Hi Mark,
    Check the following:
    1) You have run the report /MRSS/HCM_RPTWFMIF with transfer qualifications as checked. I guess (from your other post) this data is going in own HR box instead of MRS box (due to RFC issue)
    Check the table: /MRS/D_BAS_REQ
    If you solve the RFC problem, this should get solved automatically.
    2) When you created a Requirement profile, you need to attach it on the "Internal" tab of the operation
    Now check following:
    1) Right click on demand and select "Required Qualifications" -- It should show the qualifications
    2) Right click on Resource and select "Qualifications" -- It should show skills of resource
    If 1 fails - Order Qualifications are not transferred !!
    If 2 fails - Resource qualifications are not transferred - RFC issue (may be)
    If both are there then the suitable resource should work.
    If both 1 and 2 are not there then 100 % result is correct -- Because from the demand side no skill is required so each resource is qualified to do the job...
    Regards
    Varun

  • Turning Off Gantt Charts in MS Project For PDF Gen

    hi
    we have run into a problem when printing Gantt charts with PDF Gen. They can be extremely slow and on following up with Support they have confirmed that this is an issue with Distiller and there is no fix soon. So to get around the issue we tried disabling Gannt charts in MS Project by un-checking Bars and shapes in Gantt views in 3-D' (Tools > Options, View tab) in MS Project
    Now we're finding LC does not always pick up the setting. What we have noticed is that sometimes when printing to PDF with the same file, on the same server via PDF Gen, Gantt charts will appear, and sometimes not. Occasionally, the MS Project file when printing Gantt charts will stall in the Adobe Printer Queue, LC will then start to get Stuck Threads in Weblogic, and basically become unstable.
    Upon further investigation we saw that LC will use the WINPROJ.exe if it is running to do the conversion, or start a new WINPROJ.exe process if none is running. Sometimes while starting the process we get the Gantt chart setting picked up, and sometimes not, and there is no particular pattern.
    We did a lot of digging with PROCMON to see if we could find if LC was picking up a Windows Registry entry for MS Project perhaps with a different user which did not have the Gannt chart turned off, but could not find one. Our conclusion was that sometimes LC has submitted the job before WINPROJ.exe is fully loaded and somehow the No Gantt charts option gets lost, though this is speculation based on observation of behaviour.
    Anyone know what is going on?

    Hi,
    We will get this issue reproduced in-house and see if we can provide a patch to address this problem. Prima facie this does not appear to be a bug in the product; rather it appears that MS Project might be "forgetting" this setting in some cases, or a similar setting (inside the file that is being converted) might override the application-wide setting.
    We will try to see if we can forcibly set this flag (through MS Project COM APIs) each time a MS Project file gets converted. If this works, we might be able to provide a patch.
    Meanwhile, can you let me know exactly what version of MS Office (with the service pack details, if any) that you are using?
    Regards,
    Amit Batra
    Engineering Manager,
    Adobe LiveCycle Enterprise Suite

  • APEX 4.0.2 Project Gantt Chart - Error Code: 2002 Message: Empty input

    Hi
    I have created a brand new page containing a Project Gantt Chart region. The Gantt chart is designed to track the progress of a job over time. The page has one chart series containing the following SQL.
    SELECT null LINK,
    stage NAME,
    rownum ID,
    null PARENT_ID,
    trunc(start_date) ACTUAL_START,
    trunc(completion_date) ACTUAL_END,
    decode(completion_date, null, 0, 100) PROGRESS
    FROM tracking
    WHERE job_reference = '889343'
    This SQL statement returns values from SQL Developer and from the SQL Workshop > SQL Commands from within APEX itself.
    The problem is that when I run the page the following error displays inside the region
    Category: 2000
    Error code: 2002
    Message: Empty input
    Environment Information
    Application Express 4.0.2.00.07. - Clean installation not upgraded from APEX 3
    Using Firefox 3.6.15
    Issue identical in IE
    DB version - Oracle Database 11g Release 11.2.0.1.0 - 64bit Production
    I'm really stuck so I hope someone can help me out. I really would appreciate it.
    Thanks
    Kylie

    Debug mode doesn't appear to have picked anything up that looks out of the ordinary to me or raises any alarm bells.
    This is the XML with a reduced number of records returned.
    <anygantt>

    <settings>

    <title align="Center" position="Top">
    <text>Resources Gantt</text>

    <font_style>
    <font face="Tahoma" size="2" color="0x000000"/>
    </font_style>
    </title>
    <outer_margin left="0" top="0" right="0" bottom="0"/>

    <background>
    <fill type="Solid" color="0xffffff" opacity="0"/>
    <border enabled="false"/>
    <corners type="Square"/>
    </background>
    <navigation enabled="true"/>

    <locale>

    <date_time_format week_starts_from_monday="True">

    <months>

    <names>
    January,February,March,April,May,June,July,August,September,October,November,December
    </names>
    <short_names>Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec</short_names>
    </months>

    <week_days>

    <names>
    Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday
    </names>
    <short_names>Sun,Mon,Tue,Wed,Thu,Fri,Sat</short_names>
    </week_days>

    <format>
    <full>%yyyy.%MM.%dd.%HH.%mm.%ss</full>
    <date>%yyyy.%MM.%dd</date>
    <time>%HH.%mm.%ss</time>
    </format>
    </date_time_format>
    </locale>
    </settings>

    <datagrid enabled="true">

    <columns>

    <column width="40" cell_align="Center">

    <header>
    <text>ID</text>
    </header>
    <format>{%ID}</format>
    </column>

    <column attribute_name="Name" width="180" cell_align="Center">

    <header>
    <text>Name</text>
    </header>
    <format>{%Name}</format>
    </column>

    <column attribute_name="ActualStart" width="80" cell_align="Center">

    <header>
    <text>Start Date</text>
    </header>
    <format>{%ActualStart}{dateTimeFormat:%dd-%MMM-%yyyy}</format>
    </column>

    <column attribute_name="ActualEnd" width="80" cell_align="Center">

    <header>
    <text>End Date</text>
    </header>
    <format>{%ActualEnd}{dateTimeFormat:%dd-%MMM-%yyyy}</format>
    </column>
    </columns>
    </datagrid>

    <timeline>
    <plot line_height="30" item_height="15" item_padding="5"/>
    </timeline>

    <styles>

    <period_styles>

    <period_style name="defaultStyle">

    <tooltip enabled="true">

    <text>
    Task: {%Name}
    Start Date: {%ActualStart}{dateTimeFormat:%dd-%MMM-%yyyy}
    End Date: {%ActualEnd}{dateTimeFormat:%dd-%MMM-%yyyy}
    Complete: {%Complete}%
    </text>
    <font color="Black"/>
    </tooltip>

    <bar_style>

    <middle shape="Full">
    <fill enabled="true" type="Solid" opacity="0.8" color="0x1D8BD1"/>
    <border enabled="true" type="Solid" color="Black"/>
    </middle>

    <states>

    <hover>

    <middle>
    <border enabled="true" type="Solid" color="Red"/>
    </middle>
    </hover>
    </states>

    <start>

    <marker type="Rhomb">
    <fill enabled="true" type="Solid" opacity="0.8" color="0x1D8BD1"/>
    <border enabled="true" type="Solid" color="Black"/>
    </marker>
    </start>

    <end>

    <marker type="Rhomb">
    <fill enabled="true" type="Solid" opacity="0.8" color="0x1D8BD1"/>
    <border enabled="true" type="Solid" color="Black"/>
    </marker>
    </end>
    </bar_style>
    </period_style>
    </period_styles>

    <task_styles>

    <task_style name="defaultStyle">

    <tooltip enabled="true">

    <text>
    Task: {%Name}
    Start Date: {%ActualStart}{dateTimeFormat:%dd-%MMM-%yyyy}
    End Date: {%ActualEnd}{dateTimeFormat:%dd-%MMM-%yyyy}
    Complete: {%Complete}%
    </text>
    <font color="Black"/>
    </tooltip>

    <row_datagrid>

    <tooltip enabled="true">

    <text>
    Task: {%Name}
    Start Date: {%ActualStart}{dateTimeFormat:%dd-%MMM-%yyyy}
    End Date: {%ActualEnd}{dateTimeFormat:%dd-%MMM-%yyyy}
    Complete: {%Complete}%
    </text>
    <font color="Black"/>
    </tooltip>
    </row_datagrid>

    <actual>

    <bar_style>

    <middle shape="Full">
    <fill enabled="true" type="Solid" opacity="0.8" color="0x1D8BD1"/>
    <border enabled="true" type="Solid" color="Black"/>
    </middle>

    <states>

    <hover>

    <middle>
    <border enabled="true" type="Solid" color="Red"/>
    </middle>
    </hover>
    </states>

    <start>

    <marker type="Rhomb">
    <fill enabled="true" type="Solid" opacity="0.8" color="0x1D8BD1"/>
    <border enabled="true" type="Solid" color="Black"/>
    </marker>
    </start>

    <end>

    <marker type="Rhomb">
    <fill enabled="true" type="Solid" opacity="0.8" color="0x1D8BD1"/>
    <border enabled="true" type="Solid" color="Black"/>
    </marker>
    </end>
    </bar_style>
    </actual>

    <progress>

    <bar_style>

    <middle shape="Full">
    <fill enabled="true" type="Solid" opacity="0.8" color="0xF1683C"/>
    <border enabled="true" type="Solid" color="Black"/>
    </middle>

    <start>

    <marker type="Rhomb">
    <fill enabled="true" type="Solid" opacity="0.8" color="0xF1683C"/>
    <border enabled="true" type="Solid" color="Black"/>
    </marker>
    </start>

    <end>

    <marker type="Rhomb">
    <fill enabled="true" type="Solid" opacity="0.8" color="0xF1683C"/>
    <border enabled="true" type="Solid" color="Black"/>
    </marker>
    </end>
    </bar_style>
    </progress>

    <baseline>

    <bar_style>

    <middle shape="Full">
    <fill enabled="true" type="Solid" opacity="0.8" color="0x2AD62A"/>
    <border enabled="true" type="Solid" color="Black"/>
    </middle>

    <start>

    <marker type="Rhomb">
    <fill enabled="true" type="Solid" opacity="0.8" color="0x2AD62A"/>
    <border enabled="true" type="Solid" color="Black"/>
    </marker>
    </start>

    <end>

    <marker type="Rhomb">
    <fill enabled="true" type="Solid" opacity="0.8" color="0x2AD62A"/>
    <border enabled="true" type="Solid" color="Black"/>
    </marker>
    </end>
    </bar_style>
    </baseline>
    </task_style>
    </task_styles>

    <resource_styles>

    <resource_style>

    <row_datagrid>

    <tooltip enabled="true">

    <text>
    Task: {%Name}
    Start Date: {%ActualStart}{dateTimeFormat:%dd-%MMM-%yyyy}
    End Date: {%ActualEnd}{dateTimeFormat:%dd-%MMM-%yyyy}
    Complete: {%Complete}%
    </text>
    <font color="Black"/>
    </tooltip>
    </row_datagrid>
    </resource_style>
    </resource_styles>

    <defaults>

    <task>

    <task_style>

    <row_datagrid>

    <tooltip enabled="true">

    <text>
    Task: {%Name}
    Start Date: {%ActualStart}{dateTimeFormat:%dd-%MMM-%yyyy}
    End Date: {%ActualEnd}{dateTimeFormat:%dd-%MMM-%yyyy}
    Complete: {%Complete}%
    </text>
    <font color="Black"/>
    </tooltip>
    </row_datagrid>
    </task_style>
    </task>
    </defaults>
    </styles>

    <project_chart>

    <tasks>
    <task id="1" parent="" name="STAGE1" actual_start="2010.08.11 12.08.00" actual_end="" progress="0" style="defaultStyle"/>
    <task id="2" parent="" name="STAGE2" actual_start="" actual_end="" progress="0" style="defaultStyle"/>
    <task id="3" parent="" name="STAGE3" actual_start="2010.07.27 12.07.00" actual_end="2010.08.06 12.08.00" progress="100" style="defaultStyle"/>
    <task id="4" parent="" name="STAGE4" actual_start="" actual_end="" progress="0" style="defaultStyle"/>
    <task id="5" parent="" name="STAGE5" actual_start="" actual_end="" progress="0" style="defaultStyle"/>
    </tasks>
    </project_chart>
    </anygantt>
    Thank you for your assistance.
    Regards
    Kylie

  • Bubble chart legend problem

    Hello.
    I have problem with bubble chart the problem is that in chart legend appear the same number of object what bubble in chart e.g. if chart have 5 bubble then legend also have 5 object.
    What do I want to obtain is that in chart appear bubble which have different color (color depends on condition) and legend relate only colors. For example if chart have 4 bubble 3 - red and 1 - green then in legend appear only two position which relate green and red color (now appear 4 object three about red and one green).
    Can any one tell me how to resolve this problem?

    I already did this I added three condition (three colors red, green and yellow) in field "Value of" I choosed "is equal to" unfortunately it didn't help.
    Maybe I joust try to describe what I want to show in this chart.
    Suppose I have table with four columns u201Cdateu201D, u201Camount (number type)u201D, u201Csize (number type)u201D, u201Crisku201D (text type) now where this value appear on chart:
    - date is x axis
    - amount is y axis
    - size is a bubble size
    - risk will be bubble color
    Now I have 3 kind of risk u201CLowu201D (green color), u201CMediumu201D (yellow color) and u201CHighu201D (red color).
    Now in my data base I have table with record:
    - u201C11-11-2009u201D, u201C1u201D, u201C2u201D, u201CMediumu201D
    - u201C12-11-2009u201D, u201C2u201D, u201C1u201D, u201CMediumu201D
    - u201C13-11-2009u201D, u201C1u201D, u201C1u201D, u201CHighu201D
    - u201C14-11-2009u201D, u201C3u201D, u201C3u201D, u201CLowu201D
    - u201C15-11-2009u201D, u201C1u201D, u201C1u201D, u201CLowu201D
    Ok so now In My chart I should have 5 bubble and in legend three value (green, red, yellow) but in this case I always have five (the same number what record in table).
    Sorry if this example is not clear.

  • Print out of Gantt Chart

    While using the menubar path Project> Print> All/Gantt Chart in the Project Planning Board screen of a Project, the print preview showing the display area only. The table area is showing without the text and data. Please tell me what type of settings to be done for this problem.

    Hi Mohanty,
    Plz check.
    Project planning boardu2026u2026..projectu2026..printu2026..All/Gantt.
    Here if u are not able to see the valuesu2026.Text.
    Clicku2026.Page setupu2026.optionsu2026.see the columns have u given zerou2026u2026make it as 20.
    I hope it will solve.
    Regards
    Chandra

  • How to make the Level of Effort task visible in the Gantt Chart?

    Hi,
    I am facing an issue when trying to add a level of effort task. The bar of the task is simply not visible in the Gantt Chart.
    I take the following steps:
    - Add new task
    - Link task to predecessor milestone and successor milestone
    - Change task from activiy type to level of effort
    I can see the task being added in the Gantt Chart, the name of the task is visible, the duration of the task is calculated, but I do not see the green bar..
    What could be the problem? Can anybody help me with this issue? Thanks!

    Go to View .. Bars... and enable the bar for Level of Effort activities. If it's not there, create one.

Maybe you are looking for

  • Top N query with INLIST Iterator performance problem

    I have a top N query that is giving me problems on Oracle 11.2.0.3. First of all, I have a query like the following (simplified from the real query, but produces the same problem):     select /*+ gather_plan_statistics */ * from       select rowid   

  • No response when I try to initiate video

    Hello: Any help will be much appreciated. I am trying to make video chats work on iChat. I've never been able to do it. I've gotten a range of errors (including error 8). However, currently, when I try to initiate a video chat, my preview window come

  • Menu bar not visible in IE

    i published the website, i was able to view the menu-bar in all the explorers except Internet explorer. please give suggestions for rectifying the problem

  • WAD: How to make time scale in graph ?

    Hi, In the query, there are milestone (0MLST_USE) in rows and 3 key figures (0DATE_KYF with value type Target, Actual or Forecast) in columns. I create a report in web template with a chart type 'Profile'. I have 3 categories (Actual, Target and Fore

  • Content Copier does not backup files from MMC card...

    The option to backup files from the MMC card is missing in current PC Suite version 7.1.40.1 (it was available before PC suite was updated in december 2009).