Graph editor showing 2 separate curves

hi.
suddenly my graph editeor began to show 2 separate dimensions for x and y, even though the Separte Dimensions button is turned off. How to i get back the single curve for x and y in graph editor?

Click the "Select graph type" button (the one just after the eye on your image) and in the menu choose "Edit Speed Graph".
You'll get the speed graph back (instead of value graph).
Xavier

Similar Messages

  • Un-editable curves in graph editor?

    Are the curves in the graph editor not supposed to be standard Beziers with standard editing techniques? I'm very good at controling Bezier curves in any application (including the pen tool in AE), but adjustment handles in the graph editor don't seem to follow the same rules.
    For example: if the starting control point is set to ease out, it has an adjustment handle to the right, which I can move horizontally only. There isn't any way of dragging the adjustment handle at an angle, to change the shape of the curve controlled by the point. If I click the control point with the convert pen tool (including Alt + clicking) the curve changes to a straight line. Alt + clicking the curve again doesn't change it to a draggable curve point. It also doesn't seem possible to drag a control point or adjustment handle with the convert pen tool, which is how I'd normally get a second adjustment handle or change a line into a curve.
    Creating points with the add pen tool also doesn't create control points that behave normally. The documentation makes no mention of any of this, and describes the curves as standard, editable Bezier paths. Everything else in AE CS4 seems to be working normally.
    Anyone have an idea?

    As Mylenium cleartly explained, the graph editor can display a value graph or a speed graph for any chosen property. By default the Graph Editor is set to auto-select which kind of graph to show for each property. In other words, it will pick the one that arguably it's the most useful in most cases. Since one could consider a motion path -the vector path you get in the Comp panel to represent position- as the most natural way of displaying position property values, the Graph Editor defaults to showing speed when you select position.
    Now, having control over speed is a great thing. But many people are confused because these handles don't rotate like normal bèzier handles do. Don't worry: they do not rotate, simply because as far as speed goes, rotating the handles doesn't mean anything.
    More info on this in AE Community help's section Controlling speed between keyframes.
    Another head-scrather is that the traditional value graph for position is limited in that you can't use normal bèzier handles in it because the XYZ values are tied together. New in CS4m you now have the ability so separate dimensions, ie get separate properties for position x, position y and position z. When you do that, you get the same vector controls in the Graph Editor.
    Take a look at Separate dimensions of Position to animate components individually in After Effects Community Help.

  • Graph Editor bug

    Hello there, I'm having some problems with the graph editor on After Effects CC 2014. It shows like in the images below, almost as if the software couldn't process the graph, and it slowly starts to get more curved. Also I can't edit or even barely see the anchors, and it shows the curves for all the animated parameters, even though the option "Show selected properties" is enabled. It happened twice so far, and is related to specific comps, I checked on other comps in the same project and they were working just fine. My only guess so far is that it happened in comps where I am using that new script/preset called Ouroboros, but I'm not sure it's related to that, since the bug appeared on other layers without that effect. Any one has any clue or had this problem before?

    Yes, expression evaluation can cause these behaviors and the script uses them extensively. Nothing wrong in that regard. The rest is unclear because you made your screenshots useless by clipping out the important info like the property names. Also full system info,exact graph editor options and all that will be required.
    Mylenium

  • Anchor point in the Graph Editor and where are the Tips

    Hello All,
    What is the purpose of an anchor point in the Graph Editor when you have "Show Transform Box when multiple keyframes are Selected" engaged.   The pointer automatically turns into a PanBehind tool.   I moved it inside, outside, on the line and it doesn't seem to have any inpact on the scaling of the transform box.  Not only that, it pops back to the center when you switch from "Edit Speed Graph" and "Edit Value Graph"
    I haven't used the graph editor much, if ever and was also curious to know what/where are the graph tool tips.  I haven't seen any difference when Show Graph Tool Tips is selected.
    Thanks in advance
    on a mac   cs5.5

    OK, I see the Tool Tips are displayed when you hover over a keyframe or the path that is made.

  • Display multiple Waveform-Graphs on a separate Frontpanel

    Hi there,
    I'm looking for a solution to display multiple waveform-graphs on a separate frontpanel.
    In my application I measure a number of channels (number is a user-input). The signals I want to display each in a separate waveform-graph, because they have different scales. They shall be arranged that way, that the user can switch them on and off or arranges them on the screen, while the application is running (measuring). He shall also be able to maximize all graphs or a graph window to have a closer look at the signals.
    I already tried several things.
    1. I placed the maximum number of graphs in a separate vi, which I start in my application and then switch the frontpanel on and off via a property-node. The values I also write via the references of the waveform-array, which I place in an array. This way I can also change the propertys of each plot (scale, xmin xmax, etc), but I always have all graphs on the screen (also the unused).
    2. I then tried to change the visible-property of the unused graphs, but I cannot scale and rearrange the remaining graphs to the full frontpanel-size, because this property is read-only.
    3. I placed just one waveform-graph in the vi and then start as many vis, as I need. This is cool, because I also can program the position and size of each frontpanel, so that they are arranged in a grid on the display, but all the graphs are separate and it is uncomfortable if the user had to arrange them separate. The windows need to be docked ore something like that.
    4. I tried to place the graph-vis in subpanels, but then I cannot change the position and size of the vis programmatically.
    Has anyone an idea, how to solve this?
    I am using LabView2009Sp1 Professional Development System
    Thanks Norman

    Thanks so far,
    I attached some examples of what I tried already.
    1. MaximumNumberOf Graphs - I show 6 graphs although only two are needed. I cannot rescale the used ones to the full screen size, because the property is read-only
    2. RescaledFrontpanel - I switch the unused graphs to invisible, resize the frontpanel to hide the unused graphs, but now the window is not zoomable
    3. GridOfWindows displays the desired grid of graphs in separate windows, but they don't stick together
    I hope this explains the situation better.
    Norman
    Attachments:
    multigraph.llb ‏136 KB

  • After effects speed data in graph editor not coherent

    Hi, im animating the typical bouncing ball, and i have activated separate dimenstions to animate X,Y separate.  So i add two keys on the X value that has a constant speed, then i animate the Y value, but i notice that the speed goes below zero in the graph editor and i dont understand it..
    Should it not be Zero as the ball stops? (Green line)
    Here you have an image with my situation:

    You're making animating a bounce much too difficult. Way too much room for funky behavior.
    Set your layer at it's starting point, set a position keyframe, then move the layer to it's ending point but keep it at exactly the same height (y value). Now add this expression and adjust the Frequency, amplitude, and decay to get the path you want. The amplitude is the number of pixels you want the ball to fall.
    freq = 1.0; //oscillations per second
    amplitude =  90;
    decay =  .5;
    posCos = Math.abs(Math.cos(freq*time*2*Math.PI));
    y = amplitude*posCos/Math.exp(decay*time);
    position - [0,y]
    Your graph will then look like this:
    and you'll have a much more realistic bounce.
    Thank Dan Ebberts for the expression with a very slight modification by me. BTW, save this as an animation preset and you've always got it when you need it.

  • How do I make a line graph that shows temperature readings taken on specific dates?

    I need to make a chart of my wife's temperatures taken via ovulation thermometer. All I need is a line graph that shows the temperatures on the y axis and the dates the measurements were taken on the x axis.
    What is the easiest way to do this? Please explain in detail as I have almost no knowledge regarding Numbers. Thanks.

    You can construct a Line graph or a Scatter graph to display this.
    The two are similar, but require the data to be set up differently.
    A Line graph is a Category graph.
    Each 'date' is a text value that names a category. The categories are equally spaced along the category axis. Measurements taken on day 1, day 2 and day 4 would be equally spaced with respect to the category axis.
    Each temperature reading is a numerical value, and is represented on the graph by the distance it is placed from (and usually above) the category axis.
    A Scatter graph has two value axes.
    Each Date is a Date and Time value. The position of these values depends on the value itself. Measurements taken on February 1, February 2 and February 4 wound not be equally spaced. Along the Date axis, the space between the second and third dates would be twice as wide as that between the first and second cates.
    Each temperature reading is a numerical value, and is represented on the graph in the same manner as in the Line graph.
    Here's an example of each, using the same data set.
    For the Line graph (left), the Category labels (dates) are placed in a Header column, and the temperatures in a non-header column,
    For the Scatter graph, both the dates and the temperatures are in non-header columns. The Chart Inspector was used to Connect the data points with straight line segments, and the weight of these lines (and size of the data point markers) was increased to more closely match the weights and sizes in the Line graph.
    Data on the graphs is not intended to have any similarity to temperatures measured for your purposes.
    The construct the line graph:
    Set up the data and labels as described.
    Select the cells containing the data (column B in my case).
    Click the Chart button and choose the Line Chart.
    To construct the scatter chart:
    Set up the data as described.
    Select the cells containing the date and temperature data (columns A and B for mine)
    Click the Chart button, and select the Scatter Chart button (third from the bottom),
    In the Chart inspector, click the Series button, then set the Connection Points menu to Straight. Change the Data Point size yo 15.
    Click anywhere on the line to select it, then in the Stroke section of the Format bar, set the line weight to 4 points.
    Click on the box containing the dates (under the chart), then click the ruler icon in the Inspector to show the metrics inspector. Use the Rotate control to set the angle for the dates to about 75°.
    Click on the label for this axis (Dates) and drag it to a position below the date labels.
    Regards,
    Barry

  • BUG: JDeveloper code editor shows valid static import call as error

    I've noticed what appears to be a bug in the JDeveloper code validator when dealing with static imports.
    The following classes demonstrate the problem:
    package test;
    public class Parent {
      public static void parentMethod() {
        System.out.println("called parentMethod.");
    package test;
    public class Child extends Parent {
      public static void childMethod() {
        System.out.println("called childMethod.");
    package test;
    import static test.Child.*;
    public class StaticInheritanceTest {
      public static void main(String[] args) {
        Child.childMethod();
        Child.parentMethod();
        childMethod();
        parentMethod();  //<-- this line is highlighted as an error
    }Notice how on lines 7 and 8 of StaticInheritanceTest, the code validator does recognise that both parentMethod and childMethod are static methods of the Child class.
    Since 'Child' has been statically imported, then parentMethod should be available. Although parentMethod is presented as an 'auto-suggest' at line 11 in StaticInheritanceTest, when you try to call it the code editor shows the call as an error and the Ctrl-Click (to drill down into the method) doesn't work.
    When I run the class, it compiles successfully and runs with the following output:
    called childMethod.
    called parentMethod.
    called childMethod.
    called parentMethod.This might seem like an obscure and theoretical problem, but I've hit this whilst using Mockito, which uses exactly this kind of inherited static method to provide matchers.

    Hi,
    thanks. Will file a bug. This seems to be a designtime only issue that does not present a show stopper.
    Frank

  • How to create a graph that shows individual totals plus cumulative ones as well?

    Hi,
    I use Numbers regularly in the most basic way possible but I'd love to create a chart/graph that shows individual totals but can also show cumulative ones.
    For example, Tune A was written in 2004 and earnt £5 that year, £7 in 2005, £8 in 2006, £9 in 2007.
    Tune B was written in 2006 and earnt £5 in that year, £2 in 2007, £3 in 2008 and £4 in 2009.
    Tune C written in 2007 earnt £1 that year, £3 the next year etc.
    I want to be able to see how each Tune is earning across the years but also see how much I earnt from all three Tunes in 2007, 2008 etc.
    Can any tell me whether it's possible, whether such thing already exists (free or paid for template is fine) or how to in simple terms?
    Many thanks.
    A.

    Setting up one simple data input table and using SUMIFS and COUNTIFS to extract summary data can be easier and more flexible than using long LOOKUP functions with multiple data input tables.   For example, this one Data table can be used to as the source for the other tables, each of which has only one formula which can be copied to other body cells:
    In B3 of 'Tune A Earnings by Year', copied down:
          =SUMIFS(Data::$C,Data::$B,$A3,Data::$A,$A$1)
    (This table can be cloned for other tunes by copy-pasting it and changing the value in A1 to the relevant tune name.)
    In B2 of 'Total Earnings by Year', copied down:
          =SUMIFS(Data::$C,Data::$B,$A2)
    In B2 of 'Total Earnings by Tune', copied down:
         =SUMIFS(Data::$C,Data::$A,A2)
    In B2 of 'By Tune by Year', copied right to column D and down:
          =SUMIFS(Data::$C,Data::$B,$A2,Data::$A,B$1)
    SUMIFS and COUNTIFS work using column-condition pairs. They are not affected by sorting or filtering the data table and update results automatically as new rows are added to the data table.
    SG

  • Can't pull the yellow handles in Graph Editor up and down

    I'm trying to fidn a solution for over an hour already.
    I can't pull the yellow handles in Graph Editor anywhere like I see it in all the Tutorials. I can only pull it left or right and make it longer or shorter. But when I try to pull it up, the entire point will go up as well.

    Thanks a lot for an answer Appreciate it.
    No but.. it doesn't work on any.. tried the value graph, speed graph.. or whatever.. I tried it all and none of them worked.... mhh..
    Tim

  • Stock app (builtin) - no way to update graphs (they show old data)

    Even if I exit and enter again form the app, switch graph View (from 1day to 1month) some graphs always shows OLD data (even a month or so).. even if it seems it download data from the network..
    It doesn't happens with ALL the stock quotes.. and it doesn't happen with the %, Price or Capit... it only happens with the graphs..
    Tried also to reset the iPhone.. problem still there..
    Any idea? Any way to "clear cache"/"force reload data" for graphs??
    Thanks

    There isn't a way,  I suppose Apple have never considered users might use it the way you are. Or more likely they don't think you should.

  • Draging view with mouse in Graph Editor?

    Only for me dragging view with Middle Mouse Button not works in Graph Editor in CC 2014.2?
    Or maybe this is intentional enhancement?

    You can send FeedBack:
    Adobe - Feature Request/Bug Report Form

  • AE 13.1 graph editor odd behavior

    Movement issue in the graph editor, it seems a bug because I can't adjust it freely.

    Maybe more clearly in this video. It does an infinite sliding down.
    This didn't happened to me in previous versions.

  • Ae 13.1 graph editor unusable!

    My graph editor has become completely useless. Can't grab any of the points and when I some how manage to they just snap into place with absolutely no control. Plus when I try to do a mass selection it's not even corresponding to where my cursor is.
    Anyone else getting this issue?
    Here is a video of what's happening:

    This Graph Editor bug is fixed in the After Effects 2014.1.1 (13.1.1) update:
    http://bit.ly/AE_1311_details

  • Zoom shortcut for graph editor?

    Is there a keyboard shortcut to zoom the height of the graph editor? I want to disable the autozoom... Thx.

    If you disable auto-zoom, then you can Alt-drag with the Zoom tool to zoom vertically. Is this what you want?
    See
    "Pan and zoom in the Graph Editor" for this and related instructions.
    If that doesn't answer your question, answer back here and/or leave a LiveDocs comment.

Maybe you are looking for