Urgent ! add a point to a Chart

How can I add a point in a Chart (graph type 61) ?
I managed to add a data but the point is not visible when my graph is painting.

How can I add a point in a Chart (graph type 61) ?
I managed to add a data but the point is not visible when my graph is painting.

Similar Messages

  • How to add more data point in Pie chart

    The default data point for Pie chart is 5, how could I add more data  point, I notice that I can do assign the cell to the value under data in General tab property of chart pie, but, in the sample drill down, there is no value for that value, and it still has 6 data point.

    Hi DFW
    The sample file has got the spreadsheet range missing thats all.  Just add the range you need to your pie chart.
    Regards
    Charles

  • Cant add more data points to numbers chart

    I have a 2 axis 2D graph. I would guess i have about 150 data points along the y axis for both lines on the chart. I have been updating the chart each week no probem with new data points. However today, i can only seem to add a few more points - when i try to add past a certain amount of data points, the last 20 or so data points are removed from the series?
    It simply will not allow me to add more data?
    Any help on this matter would be greatly appreciated as the charts are for use in my business

    Hi Jerrold, thanks for the reply.
    I dont have category labels. I have a 2 axis 2D chart, with a line series and an area series on the chart. I add new data to the chart each week by clicking on either the line or the area series on the chart, then going to my data table beside the chart, and by holding apple command button and clicking on the relevant cells to add to the charts. As of this weeks adding, it starts of as usual, adding the cells to the line and area series, and thus adding data onto the existing chart and extending it out to the right, as it normally would. However, i can only add a certain amount of new cells (data points) to either the line or area series. When i go to add more, a very strange thing happens. The series switches from all the cells that are highlighted blue, to another table i have on the same document??? If i look at the Inspector in the Data box under the series tab, the data goes from the typical 'Table 1 :: D18', (highlighted in blue, to the following weird data point : 'D38,SFTGlobalID_CB7D88F601784CAC8DD283ECA59CFB41 :'
    Its worth noting that although i an working on a brand new macbook pro, numbers has crashed on me a number of times when adding large amounts of data to the chart The table has 1,120 rows, and 11 columns. Only 1 in every 5 or so rows are plotted (on y axis), so roughly 200 or so data points for both line and area chart are plotted. And only 1 column is used for each chart. Thus i have 11 charts on the one numbers document. Is it a case of too much for numbers to handle?
    I have just deleted all the y axis data for the area series for one chart, and added all the data from the whole table again, (rather than just adding this weeks to last weeks, which is where i saw the problem in the first place) to see if it made a difference. But none. Once i got to a certain point, if i add one more cell data point to the chart, the exact same thing happened as above - the highlighted data switched from what i had been highlighting the whole way down the table, to an entirely different table in the same workbook.
    Any ideas would be greatly appreciated.

  • How do you add cue points to a MOV file that Director 12 can read?

    I have just downloaded the Trial of Director 12 - and unless I can add cue points to video that it can interpret - I am not going to be able to achieve what I need to.  I've spent the last day and a half looking over the scant documentation provided by Adobe, and anything else I could find online - but the only answers that came anywhere near were for old versions using discontinued xtras.
    Please can anyone help? - I am using Windows 7 64 bit - CS6.
    Thanks in advance. :-)

    Probably too late for your project but...
    You can do this by using 3 sprites in addition to the SWF. In this example, I've named them "videoPlay", "videoRewind, and "videoStop". The SWF in this case was named "video."
    Apply this script to each of the 3 sprites.
    property mySprite
    on beginSprite me
      mySprite = sprite(me.spriteNum)
    end
    on mouseUp me
      case mySprite.name of 
        "videoPlay":
          sprite("video").play()
        "videoStop":
          sprite("video").stop()
        "videoRewind":
          sprite("video").stop()
          sprite("video").rewind()
      end case
    end

  • How do i add bullet points to a pdf

    How do i add bullet points to a pdf?

    Hi
    I am not using it for a presentation. I am creating an email flyer and just want to highlight a few key points by adding bullet points such as:
    xxx
    xxx
    I eventually changed the font to wingdings which was very time consuming.

  • Plotting data against time points in a chart

    I am trying to plot some measurements at different time points in a chart. However the time time points are not regular. They are at 0, 0.5 hours, 24 hours, 24.5 hours, 48 hours etc.
    When I try to chart the data the chart always has the x-axis points at regular intervals so it doesn't represent change over time. Is there a way of charting the points at the relative point along the x-axis over time without having to use a table with a time point for every 30 mins?

    Jwaz,
    Read the chapter on Charts in the Numbers User Guide. You can download it from the Help Menu.
    There are two basic classes of Chart; Category and Scatter. In a Category Chart, which it appears you are using, the "X-Axis Values" are actually treated as Labels with no particular numeric value. In a Scatter Chart, which it appears you would like to be using, the X-Axis uses true values.
    If you study the available Chart types you will see that all but one are Category Charts. You can plot a line with a Scatter Chart by adding connecting lines. You can also simulate a bar chart in a Scatter Chart if that's the look you want, by charting series that have only two data points; X,0 and X,Y.
    Which type of chart you pick will affect your choice of table layout. Category Charts require Text Fields for the Category Labels and Value fields for Y-Values. Scatter Charts require Values for both axes.
    Jerry
    Message was edited by: Jerrold Green1

  • Trying to add enhancement point in standard code

    Hi,
    i am trying  to add enhancement point in standard code using the steps givenin the link.
    http://www.sapdev.co.uk/enhance/eframework/ef_implicit.htm
    but i am not able to get the enhancement point .
    Could you please let me know if there is anything additional steps to be followed.
    or are there config setting that has to be checked.
    Regards,
    saleha

    Hi Sandra,
    when I try to create an enhancement point by pressing enhance (shift-f4) going in edit->Enhancment operations->Create it gives me a message 'In this mode you can create implementations only'. (At this point my cursor in the code is at the point I want to make it happen)
    So the Q is how do I get the E.point in the code at the point I desire.
    Regards,
    Saleha

  • COM: "Add Connection Point" does not generate Fire_* methods (VS2010)

    I'm currently attempting to implement a COM component with event support using connection points.
    I've followed the general instructions given in
    http://msdn.microsoft.com/en-us/library/9h7xedd1%28VS.80%29.aspx and
    http://msdn.microsoft.com/en-us/magazine/cc163361.aspx .
    Meaning I added a method description to the IDL file, generated the underlying type library by doing a compile on the IDL-file, and performed the "Add Connection Point" on the class in class view.
    Following this procedure works like a charm for new projects - connection points are created without problems. However, on the project I've been working on for a while the necessary Fire_* methods are not created. The CProxy_* class is created, but it's
    empty except for the class declaration (no methods)).
    I've been looking around the net a bit and I noticed I'm not the only one having this problem. So I was wondering does anyone know what could cause this, is it a bug and, if so, is there a way to solve this?
    update:
    Similar problem 1
    Similar problem 2

    Hello,
    For
    the IDE wizard issue, please consider the following lists of items that we can try.
    1. Have we applied the latest service pack? If not, apply the service pack.
    2. If we reboot the operating system to safe mode, do we have the problem? This can help to isolate whether any other applications are interfering
    with Visual Studio. Note that some features (like IIS) are not available under safe mode. Please check whether this can apply or not. In addition to safe mode, we can also suggest “clean boot”:
    http://support.microsoft.com/kb/310353.
    3. If we create a new user account, do we have the problem? This can help to isolate user profile corruption related causes.
    4. If we disable Add-ns (e.g. “Tools” | “Add-in Manager”) and run “devenv.exe /safemode”, do we still have
    the problem? This can eliminate the possibility that third party Add-ins are causing problems.
    5. If we create a new project, do we have the problem? Sometimes corrupted project settings can cause problems. These are project specific.
    6. If the problem remains, we can use Visual Studio Setup Wizard (via Control Panel) to repair Visual Studio. It can restore the Visual Studio
    Installation into its original state.
    Cheers
    Yi Feng Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.

  • Add Anchor Point tool makes entire selection disappear

    I've encountered this off and on over the last few years from Flash CS3 to CS5. It doesn't happen on everything but right now I've got some hair I'm creating and I've spent the last 30 minutes trying to add anchor points and only successfully been able to add 3 or 4. Most of the time, adding an anchor point just makes my entire drawing disappear. Has anyone else encountered this? My work has all but come to a stop because of this problem.

    Problem Solved.
    Turned on Smart Guides (cmd-U) and that seems to have taken care of it.

  • Illustrator cc 2014 adds anchor points to guides

    What is happening with illustrator CC 2014!!! I have placed a guide to know where to add a anchor point cliked on the add anchor point tool but when i select the object i want to add the anchor point to it adds an anchor point to the guide!!!! so i locked the guide thinking that this would solve the problem it then gives me a warning sign saying please use on a segment of the path it still thinks the guide is a path!!!

    wozza,
    Are you sure you are selecting the path, not the guid?
    It may be time to look at the list.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Add cue points to FLV without recompressing

    Hello All,
    I'm using the standalone cs4 AME and I'm wondering if there is a way to add cue points to an existing FLV file and save it without recompressing. Seems like I must be missing something simple.
    Thanks,
    Rick

    Thanks Jim,
    I'll have to check the Flash workflow.
    I know in AME I can keep the same size and frame rate, so I figured somehow I could eliminate further compression.
    Moyea has a product that does this:
    "The program does not re-encode the files for output, making it using the original source file without compression. Since there is no conversion from the source file to the output file, you can create Flash videos with original quality."
    Just looking to use a simple tool I already own...

  • Pen Tool, add new point keeps previous point selected?

    This has bugged me immensely ever since the new versions of inDesign adopted this habit, is there a work-around?
    Say I want to make a customly shaped frame around a photo that's imported in the standard rectangle shape and I don't want it to be a circle, rounded rectangle, or polygon that I can simply "convert shape" to. I could try editing the path with the pencil tool but typically that will create 100+ anchor points of vector disaster.
    What I used to do in CS2, CS3, CS4 is grab the handy pen tool, add a point  and  move it where I want with the direct selection tool by simply holding CMD (ctrl).
    But now, (not sure if it started in CS5, CS5.5, or CS6) when I add a new point it keeps the previous points selected. Rubbish, now I can't move the new point where I want it without moving the previous however many I created. And there's no simple 1-click method of only selecting the point I just made (that I know of). Re-clicking with the direct selection tool does nothing and clicking other selected points does not deselect them.
    So in order to move the point I just made, by itself, I have to deselect all points then reselect the point I want to move, which is really tricky if it's under other objects.
    Does anyone know how to have ONLY the new point selected when I add a point? Or even have no points selected so I can easily CMD+click the ones I want to move?

    It looks like what is needed is some way to deselect all the points on a selected object, while keeping the object itself selected.
    Using the built-in InDesign tools, the way to do that would seem to be: switch to the direct selection white arrow tool (by pressing CMD) as you have been doing. Click anywhere on the path of the object. This clears all selected points while keeping the object selected. Now release CMD to get back to the Pen tool, and add your point.
    If this is too fiddly (it can be tricky to click on the path itself, although the white arrow changes subtely to show you that you're over the path), you can alternatively use the following one line script:
    try {app.selection[0].select()}catch(_){};
    This does the same thing: It deselects all selected points on the current page item.
    To use, copy this line to a text editor. Save with the extension .jsx and place in your InDesign scripts folder. You can then assign a keyboard shortcut to the script, so that it should be very easy to deselect all the points.

  • I want to add power point content to my quiz page (slide).

    I want to add power point content to my quiz page (slide).
    I use CP7

    Bringing in a PPT slide usually means the content ends up as a fixed graphic background anyway.  So why not just group the objects on your PPT slide, right click and turn them into a PNG graphic, and then insert that PNG into your quiz slide?

  • How do I switch to "Add Anchor Point Tool" and "Convert Point Tool" with shortcuts? (CS6)(Windows 7)

    I would like to know if there’re shortcuts to switch to" Add Anchor Point Tool" and "Convert Point Tool" on Photoshop CS6 while using a Windows 7 PC.
    Thank you for your time!!

    What I usually do is use the pen tool. Clicking anywhere on the path adds points, clicking on a point removes it and holding down the alt key while over a point is the convert point tool. Ctrl key is the direct selection tool and ctrl+alt key while dragging the object duplicates it.

  • Add Anchor Points by Distance?

    I often need to add anchor points to a shape when I bring it into Cinema 4D to extrude and warp.
    The Object>Path>Add Anchor Points just adds an additional anchor between existing anchor points, effectively doubling the density every time its run.
    This isn't great for shapes with very long segments and very short segments. The short segments don't need subdividing, but the long segments need more subdivisions.
    Is there a script or plug-in that can add anchor points based on distance? Such as: Add an extra anchor point to a path every 10 mm?

    Navarro,
    You may do it in this roundabout way:
    1) Select the object and Select>Object>Direction Handles;
    2) Ctrl/Cmd+X to Cut;
    3) Press Delete;
    4) Ctrl/Cmd+F to Paste in Front;
    Now you have changed the path segments into separate paths;
    5) For each (path segment) path apply Object>Path>Add Anchor Points as needed or maybe (depending on version) use the more versatile free Divide script, see below;
    6) Select the paths and Ctrl/Cmd+J to join them (use Direct Selection in older versions).
    With the rectangle shown, it would be changed into two long horizontal paths and two short vertical ones; you can select each pair and add Anchor Points, or maybe just leave the vertical ones as they are.
    You may download the Divide script here:
    http://park12.wakwak.com/~shp/lc/et/en_aics_script.html

Maybe you are looking for

  • How do i retrieve a cleared item from the download list?

    It was a .pdf downloaded from a website. I accidentally cleared it before I had printed it. It is not in the history as it is an external .pdf.

  • Problems with running programs after upgrade

    I have tried to look for a solution elsewhere, but was not lucky to get it. My problem is that I have upgraded my Macbook pro from Tiger to Snow Leopard. Unfortunatelly when I try to start certain programs I get error message that Version of the soft

  • OM/PA Bug - Personnel have different Org Unit in PA.

    An employee was hired into an Org Unit A. However, when I check into PA20, the employee's org unit is showing as Org Unit B. I checked PPOME, and the Employee (Person) and his position and it is shown under Org Unit A.(the correct Org Unit.) I check

  • Saved file size decreases with time

    Hi all,  I am using Data acquisition system with  rate 10000 and 1000 sample per channel (exist 4 channels) to acquire analog voltage signals to measure the amplitude in each channel. Moreover the raw signals are saved as TDM file of 1 minute. The sy

  • PO approval notification not received by user

    Hi, There are 2 POs pending for approval from user. The PO status shows 'In Process'. The user is not receiving any notifications for approving the POs. Can someone let me know the root cause and the resolution. Regards, Radhika.