Gant Chart time scale on quarterly basis

Hi All,
My requirement is display of Gant chart time scale on Quarterly basis. Currently it is coming month basis.
Can you please suggest me settings.
Thanks in advance
Regards

in CJ2B select
Settings > options
and adjust graphic as you required and save the node while exiting..

Similar Messages

  • Question about waveform chart time scale

    Hello,
    I have question regarding to time scale on my chart, I want  it to show the actual measured time, for example  from 0-30 seconds, but instead my minimum value is 302654789854 . Please help me to fix it.
    Regards ,
    Stella Deheryan

    You can modify the way the time is displayed on the axis by right clicking the chart and selecting properties. On the display format tab, select relative time. This should show the X-axis scale as HH:MM. Or pick any other type of formatting you want.
    Best Regards
    Michiel
    Applications Engineer
    NI Belgium
    http://www.ni.com/ask

  • Problem with waveform chart: time scale does not show time correctly

    Hello,
    I have some problems with a chart.
    I want to display some data and the time between two single data can vary. It is something between 50ms and 500 ms.
    The problems I have:
    1. The time is not shown correctly in the chart (allways 2:00:10 instead of the current time)
    2. the data points in the chart have a distance of 1 s (x-scale). That is not correct.
    I have tried several things but I thinkt I am on the wrong track.
    Could you please help me?
    Johannes
    LabVIEW 7.1 (!)
    Message Edited by johanneshoer on 10-14-2009 04:26 AM
    Greetings Johannes
    Using LabVIEW 7.1 and 2009 recently
    Solved!
    Go to Solution.
    Attachments:
    Chart Test.vi ‏55 KB

    I have modifierd the vi again.
    Now it looks much better.
    I have a data array and the last 10 seconds of the data are displayed.
    The array size is maximum 150 and that is more than I need to display. If new data is inserted, the oldest gets deleted.
    I wonder if this style is efficient?
    The time is stil not displayed correctly in the graph. Why does it always show 2:00:00 ?
    Johanens
    LabVIEW 7.1
    Greetings Johannes
    Using LabVIEW 7.1 and 2009 recently
    Attachments:
    Chart Test 3.vi ‏57 KB

  • Creating chart with "Time Scale" on group axis

    Hello,
    I am using Visual Studio 2005 with Crystal Reports (ver 10.2) and I would like to create a report with a "Date axis line chart". The group axis of the chart should act as a timeline, so I selected "Show Time Scale" in the general options of the group axis. I'll give you a short example of the input data:
    It is just a simple table with 2 columns. In the first column there is a timestamp (X/group axis), in the second column an integer value (Y/data axis) that represents a status of something:
    col1. . . . . . . . . . . . . . . . col2
    2012-01-01 00:00:00 . . . . 2
    2012-01-01 01:00:00 . . . . 1
    2012-01-01 09:00:00 . . . . 3
    2012-01-02 12:00:00 . . . . 1
    .... and so on.
    As you can see, the differences between the timestamps are not equal. Therefore I have selected the "Time Scale" option to get the values placed correctly on the timeline. When I execute it, the line is shown correctly, but the group axis has just one label per day. I would like to have one per hour, but I did not find any way to realize it. Is it possible to change the division of the group axis? In the tab "scales" of the options dialog you can only select "Day", "Month" and "Year" for the base unit. Is there any way to change the base unit from day to hour?
    Thanks,
    Jan

    This being more of a design question I asked the CR design guys for some guidance / comment. (BTW., you posted to the correct / prefered forum here as you're using the bundled CR). Anyhow, the answer I got is not particularly encouraging.
    We looked at the stand-alone / full version of CR but only confirmed that  there is no other options than Day, Month or Year for this type of chart - even in the full CR designer.
    Suggestions that did come up:
    - Create a SQL Query that generates the missing data. Unfortunately, it would be up to you to figure this out...
    - Use the subreport technique to fill the missing time. ( I have attached a sample report with some explanations )
    If you have more questions, I'd recommend creating a thread in the [SAP Crystal Reports Design|SAP Crystal Reports, version for Visual Studio; forum. Quote this thread and see if they can provide further assistance.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Adjust time scale in chart

    Hi,
    I am trying to write a VI that can adjust the time scale in a chart. Wired 2 number controls for the x.scale.max and x.scale.min. With only these two controls, the display flashes. Had to add another button control to only read the two number controls to be read once at a time. But the display still flashes back to 0 when updating, even briefly.
    Wondering if there is an elegant way to control the time scale without the extra button or even a better way.
    Also would love to know if there is a better way to control the y-scale.
    Are there examples that illustrate controlling of x-scale and y-scale programmatically?
    Please see the attache VI.
    Thanks,
    Rut.
    Attachments:
    Scales11.vi ‏28 KB

    Thanks for the replies.
    To use the Event Structure, I have to make lots of changes on the real program. This VI is only a test on the scaling. The mechanic change did work better.
    I de-selected the Auto Adjust Scales from Adavnced. But the flashing is still present.
    The X Scale button is still needed. Without this button, ie, the X Scale.Range:Maximum and X Scale.Range:Minimum controls are directly connected to the corresponding properties, the display flashes all the time (please see the attached VI without this button; the previous VI has this button). With the button to ensure only one time control, the flash is short and acceptable.
    My question is whether there is method that I don't need the X Scale button at all and only need to have some property combination that works properly. Or I have to live with it. Thanks.
    Rut
    Attachments:
    Scales3.vi ‏25 KB

  • Chart x scale update problem

    LabVIEW  8.5.1
    Sweep Chart Problem
    The x scale values do not update until after the 2nd sweep.  The red line cursor gets to the end of the sweep and starts the next, but the scale numbers do not update until the next sweep starts.
    It appears to be a problem with the chart, since it happens with any vi with a sweep chart.  I've used versions 6 through 7 for years and never seen this.  I've only recently moved to a new job with a new machine and version 8.5.1., so I'm not sure what to try.
    I've included a simple example.
    Thanks much,
    JSC321
    Attachments:
    Chart Sweep Scale Update Problem.vi ‏32 KB

    You have a typical race condition!
    There is no data dependency between the property node and the while loop, so in your case the loop starts executing first and the property node starts slightly later, immediately erasing the first point. Execution order is not defined.
    All you need to do is add a data dependency, e.g. as with the error cluster in the image. This forces the property node to complete before the loop is allowed to start.
    (Execution order is enforced even if the wire value is not even used inside the loop )
    Try it!
    Message Edited by altenbach on 12-23-2008 11:08 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    HistoryRace.png ‏10 KB

  • Relative Time Scale for X-Axis when creating a Line Graph in CS3?

    Is there a way to get the APPROPRIATE RELATIVE scale for the X-Axis (Category) when you're using dates?
    Example:
    If this is my data set:
                        Group A          Group B
    01/03/99                1                5
    01/04/99                11                3
    01/05/99                6                12
    11/27/07                63                54
    If I plot this in Xcel, by default, each date (x-axis) will be spaced the same distance apart. However, there is a checkbox to "time-scale" the X-Axis which will place the dates relative to one another. In other words, if we're talking about a bar graph, the first three bars would be close together on the left side of the chart, and the 4th bar would be waaaaaay on the right side of the graph.
    So, below, if 'x' is a bar, I keep getting this in CS3:
    x     x     x     x
    I want to get this:
    x x x             x
    Get it?

    Is there a way to get the APPROPRIATE RELATIVE scale for the X-Axis (Category) when you're using dates?
    Example:
    If this is my data set:
                        Group A          Group B
    01/03/99                1                5
    01/04/99                11                3
    01/05/99                6                12
    11/27/07                63                54
    If I plot this in Xcel, by default, each date (x-axis) will be spaced the same distance apart. However, there is a checkbox to "time-scale" the X-Axis which will place the dates relative to one another. In other words, if we're talking about a bar graph, the first three bars would be close together on the left side of the chart, and the 4th bar would be waaaaaay on the right side of the graph.
    So, below, if 'x' is a bar, I keep getting this in CS3:
    x     x     x     x
    I want to get this:
    x x x             x
    Get it?

  • How to make a Gant Chart in OBIEE analysis

    Hi all,
    I have intergrate OBIEE 11g with my ERP system, module Project Management. Now, i want to make a Gant chart on BIEE to manage time of project.
    But i can't see this chart type on BIEE, plz tell me how to make it.
    Tks so much

    Please refer to the following link on how to create gantt charts in OBIEE.
    http://oraclebizint.wordpress.com/2007/12/06/oracle-bi-ee-101332-marquee-images-and-gantt-charts/
    Thank you,
    -Amith.

  • How to set the correct time scale of VI ?

    I created a VI to display waveforms on the waveform graph. The problem is the time scale of the VI is always the year 1904.I tried to select absolute time in Property options of the waveform, but it remained the same. Can anybody help me with this? Thanks.

    > The x-scale is always 01/01/1904 even after I selected the 'absolute
    > time' option from waveform chart properties. If I add 2004 as offset
    > of x-scale as suggested by the previous post, the waveform of the
    > signal cannot be displayed, the system think it is still running in
    > 1904.Could you give me some further help?
    >
    Your description doesn't give enough information to pinpoint the
    problem, so I'll list off a few things that could be going on.
    The graphs and charts accept many datatypes. If you are using the
    waveform, display it on a regular waveform indicator and see what the
    timestamp and deltaT are. If these are correct, then the graph should
    be able to display things with no further changes except that you may
    need to turn on X Scale Autoscaling so that it will zoom and shift to
    show the plotted data. Charts will shift, but by default will not zoom
    in, and it might make sense there sometimes too depending on the delta T
    and amount of data plotted.
    If the timestamp on the waveform is incorrect, then it is much easier to
    construct the properly marked waveform than make the graph add to it to
    label the waveform's time differently.
    If you are not using the waveform, then you may be using a cluster of
    X0, dX, and Y array wired to the graph. This is very similar to the
    waveform, and again, it is better to add offsets to get the X0 to
    display correctly on a numeric. You can extract this number or display
    the cluster in an indicator, then format the numeric to display absolute
    time.
    If you are simply wiring the Y array, then LV will construct the X
    values based upon the number of points beginning at 0 and incrementing
    by one by default. When displayed as absolute time, this will default
    to midnight Jan 1 2004 plus an offset based upon your timezone. In this
    case, since there is no X information being piped into the graph, it is
    better corrected by going to the graph properties for the X Scale and
    setting the X Offset to the seconds between now and 1904. This is a
    constant you can compute when your program starts up or you can use a
    calculator, whichever is easier. You will also likely want to set the X
    Multiplier to the deltaT between successive points. 0.001 for 1KHz, 1
    for 1Hz, etc.
    Finally, if these suggestions don't make sense or don't help, you might
    want to explain more about what doesn't work.
    Greg McKaskle

  • Change "Chart x scale maximum range" in running mode....

    Hi,
    I have a little problem for labview world, i use chart graph and  if user choose 100 meter for x scale range in running mode,  every time user must see last 100 meter on the chart x scale range in running mode. Also if user change x scale range for instance 200 meter in running mode, user can see last 200 meter every time.
    I did little labview .vi for this but my problem is that
    user choose: 100 meter in running mode (0-100 meter) 
    and chart value is 101 for x scale,  x scale is 100-101,100-102,100-103... so on no update other range (100-200) "ı dont do this....
    Thank you every one and i love labview by the way i added example coded for problem (labview 8.0), (block diagram explain problems with label) if u want u can see correct code solution.... 
    Solved!
    Go to Solution.
    Attachments:
    chart x scale max.vi ‏14 KB

    kacco wrote:
    by the way i wanna ask some question about event str. Why am i using time out terminal 50 milisecond? if i connect -1 while loop doesnt work, or if event str time out terminal is empty value, i see same problem(while loop doesnt work, chart is not running)
    but event structure can use empty value for timeout terminal..... this vi  no  What is the meaning of this????
    kudos is coming soon my friend this is good and very useful solution thank u.....
    The timeout terminal lets you perform an action at a prescribed rate.  If I didn't use it, the Event Structure would sit until a Front Panel control is changed; that would keep the Random Number function from adding to the chart.  I wanted a new random number to continually add to the chart so I put it in the Timeout case.  I used 50 ms, instead of your 150, because I wanted it to run faster.  Not wiring something to that terminal results in the default value (-1) being used which makes it never time out, explaining why your VI doesn't work when you tried it.
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice

  • Show Time Scale

    Hi,
    Just evaluating CR 2008 having used CR 2008 Basic through Visual Studio 2008. The reason for considering the upgrade is to benefit from the enhanced formatting abilities in the full version.
    My problem is that I am trying to configure a stacked area chart to show various related financial figures over the period of a year or more. My problem with a regular stacked area chart is that because of the large number of data points (daily) the X axis becomes far too chaotic with the large number of labels. The obvious option seems to be to use the "Show time scale" option in axis settings, however when you chose this option the "Date axis area" chart type is automatically chosen and this chart type doesn't seem to allow stacking. Can anybody help?
    Secondly, is there any way to change the scaling and date format of the X axis when scaling by time e.g. is there anyway of changing the scale to monthly and showing the date format as mm/yy. Also if I wanted to view the chart using a yearly scale is there any way of doing this and setting the date format to yyyy.
    Kind Regards,
    Mark

    >
    Raghavendra Gadhamsetty wrote:
    > Did you try adding the formula year(datefield) in X axis by removing the existing datefield?
    >
    > Regards,
    > Raghavendra
    Thanks for the answer regarding dates. I'm still awaiting an answer on the following part of my question:
    "My problem is that I am trying to configure a stacked area chart to show various related financial figures over the period of a year or more. My problem with a regular stacked area chart is that because of the large number of data points (daily) the X axis becomes far too chaotic with the large number of labels. The obvious option seems to be to use the "Show time scale" option in axis settings, however when you chose this option the "Date axis area" chart type is automatically chosen and this chart type doesn't seem to allow stacking. Can anybody help?"
    Thanks in advance for your help.
    Kind Regards,
    Mark

  • Time Scale Customizing - To Omit Chunks of Time

    Hello,
    After reading an existing post titled "Time scale during non working time" it's been confirmed the user cannot remove particular periods of time from the gantt chart on 2013, (a shame).
    I need to do this as the project I'm to continue on had a hiatus for almost a year due to a colleague leaving the company. Therefore to print the schedule there are several pages in between start and finish dates with horizontal lines which is wasted space/paper.
    My next thought was to convert to PDF and simply omit these "wasted" pages in between for a more concise document.
    Is this possible within the view tab to omit these pages or do I need to print 1st page, last page then combine the 2 in PDF?

    Yacob - The timescale in Gantt View is designed to show all calendar days / weeks / months / etc. From your question, you want a concise version of your entire schedule.
    Option 1: In View tab, click Entire Project in Zoom group. This will fit the entire plan within your screen. Then, copy the Gantt Chart as a picture by using Copy ... Copy Picture in Task ribbon
    Option 2: Install a PDF printer driver (just google). This will install PDF driver as one of the printers. In File backstage, choose Print. Select the PDF printer and select page setup. Change the scaling radio button to "Fit to 1 pages wide by 1 page
    tall"
    Sai PMP, PMI-SP, MCTS Project, MVP Project

  • Time scale tool tip

    Hello there!
    How can I create a function to write a tool tip that gives details of the date that the mouse is pointing in the time scale bars??
    All and any help would be appreciated.

    I'm using a ilog elixir gantt chart component and I would like to create a tool tip that would indicate what time is the mouse pointing to.
    This component has two bars the one in the upper side is more generic. Both of the bars in this component indicate time but the one that is on top is more aggregated.
    The mx: tags that I'm using are the flex and the ilog ones:
         xmlns:mx="http://www.adobe.com/2006/mxml"
         xmlns:ilog="http://www.ilog.com/2007/ilog/flex"
    Thank you

  • How to change the time scale on Dynamometer's profile

    I am using LabVIEW 7.0 and running the Dynamometer Kit. I have tow questions:
    1) How to change the x-increment on the time scale? Right now it is fixed at 0.25 minute per mark. Changing 'x-increment' under VI Hierarchy only changes the mark before the origin (0,0). For example, I changed the value of 'x-increment' to 0.1, I get a -0.1 on the x-axis, however, everything else remains at 0.25 increments.
    2) How to save/load the results of the profile? In other words, how would I save the data into files that I can recall later.
    Thanks

    Hi,
    To address your question, are you referring to the attached dynocode.llb files? I didn't see a waveform graph or chart in these files, but I am assuming your x-increment question is pertaining to a graph you are using. To set the marker spacing on the x-scale, right-click on the front panel where your graph is located and select Properties >> Scales. Then, there is a drop down to select the x or y-axis. Choose the appropriate one and deselect Autoscale. You can then set the offset and multiplier options. The multiplier will set the marker spacing (x-increment) on the graph. Sometimes, the waveform graph doesn't modify correctly and you might want to replace it with a new waveform graph instance. Tight-click on the graph, choose Replace and then
    navigate to the Waveform Graph.vi.
    To address your other question regarding saving/loading the profile information, I would suggest looking at the Read From Text File.vi and Write To Text File.vi example programs that are in the LabVIEW Example Finder under Help >> Fundamentals >> File Input and Output.
    Let me know if you have any further questions or if this does not resolve your issue.
    Thanks again and have a great day!
    Kileen C.
    Applications Engineer
    National Instruments
    Attachments:
    dynocode.llb ‏5997 KB

  • My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?

    My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?  Network is administered through an iMac running OS X Yosemite 10.10.2.  Ideally, would like for the second Airport Extreme hard drive to appear on the list of devices in the Finder window.

    Ok.. gottcha
    The problem is network wise.. Yosemite is about equal to tin cans and string.. pathetic.
    Here is my usual set of instructions to get anything working on Yosemite.
    The best way to fix problems is a full factory reset of all the AE in the network.
    Factory reset universal
    Power off the AE.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the AE to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    Then redo the setup from the computer with Yosemite.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg AEgen5 and AEwifi for basestation and wireless respectively.
    Even better if the issue is more wireless use AE24ghz and AE5ghz with fixed channels as this also seems to help stop the nonsense.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the AE always takes the same IP address.. this is not a problem for AE which is router.. it is a problem for AE which is bridged.. you will need to set static IP in the main router by dhcp reservations or use static IP in the AE which is tricky.
    4. Check your share name on the computer is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric..
    5. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only.
    6. Now mount the disk of the second AE in finder... manually.
    Use Go, Connect to Server and type in the AE ip address.
    SMB://10.0.1.2
    Where you will replace that address with the actual address. The network resource should be discovered and then it will request the password.. type that in and make sure you tick to save it in your keychain.
    There is a lot more jiggery pokery you can try but the above is a good start.. if you find it still unreliable.. don't be surprised.
    Do as much as you want of the above... not all of it is necessary.. only if you want it reliable.. or as reliable as Yosemite in its current incarnation can manage.
    The most important thing is point 6.. mount the disk using direct IP address and not names.. dns in Yosemite is fatally flawed.
    See http://arstechnica.com/apple/2015/01/why-dns-in-os-x-10-10-is-broken-and-what-yo u-can-do-to-fix-it/

Maybe you are looking for

  • No Data in Downtown Los Angeles

    For the last 6 months or so, I have been experiencing 0 data in Downtown Los Angeles.  Specifically on 9th and Grand.  I have reported it three times and have not heard of any solution yet.  I did my own researching here in our building and I found o

  • ERROR IN IMPORT PHASE ( CREATE NODE GROUPS) CAN ANY TELL ME SOLUTION

    HI SAP EXPERTS, Iam doing Export & Import for Converting my SAP system which was previously a "NON-UNICODE" system and iam about to convert it to "UNICODE" system. i have followed the steps specified in the guide for converting a non-unicode system t

  • Documentation bug?

    Is the documentation right when it states that the getKeyPartition mathod must be in the range [0..N), where N is the value returned from PartitionedService.getPartitionCount()? I would have guessed it should be in the range [0 .. N - 1]? /Magnus

  • Filling space with non-visible component?

    Is there a better way to fill space to squeeze objects closer together in a gridlayout/flowlayout than simply making gui components and setting their visibility to false?

  • Problems Installing WPSM54G with HP Color Laserjet CP2025DN

    I have been trying to install the WPSM54G for use with my new HP Color Laserjet CP2025DN and cannot seem to get that to work.  Although I have followed several pieces of advice in these posts and elsewhere, those do not seem to do the trick in my cas