How do I create a line graph in numbers if my y values are in minute/second format?

When I try clicking line graph, it shows me an empty graph.....no data on it.....just an x and y axis

Convert your Duration values to numerical equivalent using DUR2MINUTES. Chart the values in the converted column, as shown:
Chart 1: Result when cells containig duration values (column C) are selected and charted.
Chart 2: Result for same type of chanrt with same rows of column D are selected.
D2, and filled down: =DUR2MINUTES(C)
Regards,
Barry

Similar Messages

  • How do i  create a line graph and scatterplots graph in numbers?

    hi fellow mac users, i am taking a biology class and i have to create a graph, the only problem is i dont know where to begin. I would love your advice and ideas on how to do so.THE OTHER TYPES OF GRAPHS THAT I HAVE TO MAKE IS A LINE GRAPH     SCATTER PLOT    BAR GRAPH   AND    A  PIE CHART.  if yall could help me that would be great. (a list of steps will help me alot)

    HI izzie,
    As well as the link in Wayne's post, you can get the Numbers '09 User Guide through the Help menu in Numbers.
    Besides Chapter 7, which deals with your current question, I would strongly suggest reading at least the first four chapters of the guide for a good grounding in the basics of using Numbers.
    Regards,
    Barry

  • How do I create a line that is established through two Point values?

    I'm given a number of fields and methods that must be used to establish a line that crosses through two Point values. This is a bit confusing because Point is also a class in the API, so I'm not sure where to begin with the given attributes and operations I have at hand:
    public Line (Point Start, Point End) {..}
    public boolean isHorizontal() {...}
    public boolean isVertical() {..}
    public void move(int x, int y) {...}
    public void display() {...}
    private Point theStart;
    private Point theEnd;

    @misty:
    There is a big, bold announcement at the top of this forum that reads as follows:
    BEFORE YOU POST A TOPIC HERE: Please be sure your topic is related to features or functionality of this site. This forum is not for general technology questions. Not sure which forum to use? Try searching for your topic in the "Search Forums" element on the left panel. See Known Issues to get information on issues we know about and are actively working on to improve your forums.sun.com experience.
    That announcement is also at the top of the screen where you wrote your post.
    There is also a sticky announcement thread at the top of this forum (http://forum.java.sun.com/ann.jspa?annID=34). The subject of that thread is "Before you post a topic here - This area is NOT for general technical questions". If you read that thread, it will tell you much the same thing as the announcement.
    Apparently, you missed (or chose to ignore) all three attempts to urge you to not post general technical questions to this forum. I encourage you to read them and please follow their instructions. Doing so will help you get better, faster answers to your questions, as well as keep the regular forum members from jumping down your throat for not paying attention.
    Please don't reply to this thread. Good luck.
    ~

  • I would like to know how i can create a bell graph with out using sub VIs, the data that i created consists in 500 readings with values of 0 to 100, i calculated the mean value and standard diviation. I hope some one can help me

    I would like to know how i can create a bell graph with out using sub VIs, the data that i created consists in 500 readings with values of 0 to 100, i calculated the mean value and standard diviation. I hope some one can help me

    Here's a quick example I threw together that generates a sort-of-bell-curve shaped data distribution, then performs the binning and plotting.
    -Kevin P.
    Message Edited by Kevin Price on 12-01-2006 02:42 PM
    Attachments:
    Binning example.vi ‏51 KB
    Binning example.png ‏12 KB

  • Creating multiple Line Graph having common values..

    Hi...
    I've created one application process for creating Multiple Line Graph.
    And i've integreted two tables in this graph, where values may be common for both the tables. In this case, for common values, instead of getting overlapped I'm getting scattered graph(its totally abnormal). Please help me if you 've any idea about this issue.....?
    Please go through the App Process and the output of the SQL query.
    In output of the query, in the NAME column "Feb-2010" is common.
    This is the SQL query OUTPUT:_
    TABLE 1
    NAME VALUE
    Sept-2009 100
    Oct-2009 95
    Nov-2009 98
    Feb-2010 97
    TABLE 2
    NAME VALUE
    Jan-2010 93
    Feb-2010 100
    Mar-2010 98
    Application Process :_
    DECLARE
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    OWA_UTIL.http_header_close;
    HTP.p ('<?xml version = "1.0" encoding="utf-8" standalone = "yes"?>');
    HTP.p ('<anychart>');
    HTP.p ('<settings>');
    HTP.p ('<animation enabled="True"/>');
    HTP.p ('</settings>');
    HTP.p ('<charts>');
    HTP.p ('<chart plot_type="CategorizedVertical">');
    HTP.p ('<data_plot_settings default_series_type="Line">');
    HTP.p ('<line_series>');
    HTP.p ('<marker_settings>');
    HTP.p ('<marker type="None" />');
    HTP.p ('<states>');
    HTP.p ('<hover>');
    HTP.p ('<marker type="Diamond" />');
    HTP.p ('</hover>');
    HTP.p ('</states>');
    HTP.p ('</marker_settings>');
    HTP.p ('<tooltip_settings enabled="True">');
    HTP.p ('<format>Year {%Name}{enabled:false} {%SeriesName} - {%Value}{numDecimals:0}%</format>');
    HTP.p ('</tooltip_settings>');
    HTP.p ('<effects enabled="True">');
    HTP.p ('<drop_shadow enabled="False" />');
    HTP.p ('<bevel enabled="true" distance="1" blur_x="2" blur_y="2" />');
    HTP.p ('</effects>');
    HTP.p ('<line_style>');
    HTP.p ('<line thickness="3" /> ');
    HTP.p ('</line_style>');
    HTP.p ('</line_series>');
    HTP.p ('</data_plot_settings>');
    HTP.p ('<chart_settings>');
    HTP.p ('<title enabled="true">');
    HTP.p ('<text>Avg. %App. Uptime per month </text>');
    HTP.p ('</title>');
    HTP.p ('<axes>');
    HTP.p ('<y_axis>');
    HTP.p ('<title>');
    HTP.p ('<text>Value</text> ');
    HTP.p ('</title>');
    HTP.p ('<scale minimum="90" maximum="101" major_interval="1" />');
    HTP.p ('<labels>');
    HTP.p ('<format>${%Value}{numDecimals:0}</format>');
    HTP.p ('</labels>');
    HTP.p ('<axis_markers>');
    HTP.p ('</axis_markers>');
    HTP.p ('</y_axis>');
    HTP.p ('<x_axis tickmarks_placement="Center">');
    HTP.p ('<title enabled="False" /> ');
    HTP.p ('</x_axis>');
    HTP.p (' </axes>');
    HTP.p ('</chart_settings>');
    HTP.p ('<data>');
    FOR ObjRecord IN (select DISTINCT(K_OBJECT.OBJECT_ID) as OBJECT_ID,name from K_OBJECT, K_OBJ_TYPE_ASP_REL where K_OBJECT.OBJECT_ID=K_OBJ_TYPE_ASP_REL.OBJECT_ID and K_OBJ_TYPE_ASP_REL.OBJECT_TYPE_ID=1)
    LOOP
    HTP.p ('<series name="'|| ObjRecord.name ||'">');
    FOR MonthlyValueRecord IN (select NAME,VALUE
    from K_REPORT_RUN,K_ASPECT_VALUES,K_ASP_TIM_RPT_REL
    where K_REPORT_RUN.RUN_ID=K_ASP_TIM_RPT_REL.RUN_ID
    and
    K_ASPECT_VALUES.ASPECT_VALUE_ID=K_ASP_TIM_RPT_REL.ASPECT_VALUE_ID
    and
    K_ASP_TIM_RPT_REL.ASPECT_ID=1
    and
    K_ASP_TIM_RPT_REL.OBJECT_ID=ObjRecord.OBJECT_ID
    order by K_REPORT_RUN.STARTTIME)
    LOOP
    HTP.p ('<point name="'|| MonthlyValueRecord.name ||'" y="'|| MonthlyValueRecord.value ||'" />');
    END LOOP;
    HTP.p ('</series>');
    END LOOP;
    HTP.p ('</data>');
    HTP.p ('</chart>');
    HTP.p ('</charts>');
    HTP.p ('</anychart>');
    htmldb_application.g_unrecoverable_error := true;
    END;
    Edited by: user12873839 on Apr 9, 2010 3:58 AM
    Edited by: user12873839 on Apr 9, 2010 4:02 AM
    Edited by: user12873839 on Apr 9, 2010 8:00 AM

    >
    Help Needed Urgent.....
    >
    That is one surefire way to not get any help and certainly not urgently. I suggest that you amend the title of your post to something that reflects the actual issue. This will also help anyone with similar issues to find the thread.
    When posting code please put {noformat}{noformat} (with the curly brackets and the word code in lower case) above and below it to preserve formatting like this...
    {noformat}{noformat}
    SELECT *
    FROM emp
    {noformat}{noformat}
    This will be displayed on the forum like this...SELECT *
    FROM emp
    Cheers
    Ben                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How do I create a line-Map animation effect

    How do I create a Line-Map animation effect?
    i am trying to highlight a 'Route' on a map.

    Are you using PSE or Premiere Elements? You can't do this in PSE. For PRE, better to ask in their forum, since very few of us here use it:
    http://forums.adobe.com/community/premiere_elements

  • How can i make a bar graph in numbers to track trends

    I have a table with columns A-K. All the columns have needed data for other things.  I need to track trends of incorrect input by staff.  Column A has the date and column K has a 1 if incorrect or it's blank if correct.   I only need to use the month as I need to track total incorrect for the month to see if there is a downward or upward trend as training progresses.  (i need to create a line graph that shows the total incorrect per month)  I will be tracking for a long period of time so would be nice if the graph updated as I input more info into the table.

    Jan 1, 2014 12:00:00 AM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Meyers, Rebecka - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.9
    1
    Jan 2, 2014 7:33:59 AM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Meyers, Rebecka - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.9
    1
    Jan 3, 2014 7:56:00 AM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Skarda, David - Pediatric Surgery
    CONTAMINATED
    540.9
    Jan 3, 2014 4:17:00 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Skarda, David - Pediatric Surgery
    DIRTY
    540.0
    Jan 5, 2014 9:05:59 AM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Skarda, David - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.9
    1
    Jan 5, 2014 10:22:59 AM
    APPENDECTOMY (PEDS)
    Skarda, David - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.9
    1
    Jan 6, 2014 11:06:00 AM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Skarda, David - Pediatric Surgery
    CONTAMINATED
    540.1
    Jan 7, 2014 8:38:00 AM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Scaife, Eric - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.9
    1
    Jan 8, 2014 7:42:59 PM
    APPENDECTOMY (PEDS)
    Black, Richard - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.9
    1
    Jan 9, 2014 4:31:00 PM
    APPENDECTOMY (PEDS)#1
    Black, Richard - Pediatric Surgery
    CONTAMINATED
    541.0
    Jan 10, 2014 9:14:00 AM
    APPENDECTOMY (PEDS)#2
    Black, Richard - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.0
    1
    Jan 10, 2014 3:23:00 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)#3
    Barnhart, Douglas - Pediatric Surgery
    CONTAMINATED
    540.9
    Jan 12, 2014 11:09:00 AM
    APPENDECTOMY LAPAROSCOPY (PEDS)#4
    Barnhart, Douglas - Pediatric Surgery
    CONTAMINATED
    540.0
    1
    Jan 12, 2014 3:52:00 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)#5
    Barnhart, Douglas - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.9
    1
    Jan 12, 2014 9:28:59 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)#6
    Barnhart, Douglas - Pediatric Surgery
    CONTAMINATED
    540.9
    Jan 13, 2014 5:47:00 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Scaife, Eric - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.9
    1
    Jan 13, 2014 7:19:00 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Scaife, Eric - Pediatric Surgery
    CONTAMINATED
    540.9
    Jan 14, 2014 12:52:00 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Scaife, Eric - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.0
    1
    Jan 16, 2014 7:33:00 AM
    APPENDECTOMY (PEDS)
    Black, Richard - Pediatric Surgery
    DIRTY
    540.9
    Jan 16, 2014 8:25:00 AM
    APPENDECTOMY (PEDS)
    Black, Richard - Pediatric Surgery
    DIRTY
    540.0
    Jan 16, 2014 10:51:00 AM
    APPENDECTOMY (PEDS)
    Black, Richard - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.9
    1
    Jan 17, 2014 7:58:59 AM
    APPENDECTOMY (PEDS)
    Barnhart, Douglas - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.9
    1
    Jan 18, 2014 4:49:00 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Scaife, Eric - Pediatric Surgery
    CONTAMINATED
    540.9
    Jan 19, 2014 8:19:00 AM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Scaife, Eric - Pediatric Surgery
    CONTAMINATED
    540.9
    Jan 20, 2014 7:30:00 AM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Scaife, Eric - Pediatric Surgery
    CLEAN-CONTAMINATED
    540.9
    1
    Jan 20, 2014 9:43:00 AM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Scaife, Eric - Pediatric Surgery
    CONTAMINATED
    540.9
    Jan 20, 2014 11:16:00 AM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Scaife, Eric - Pediatric Surgery
    DIRTY
    540.0
    Jan 20, 2014 12:48:00 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Scaife, Eric - Pediatric Surgery
    NWCA
    540.9
    1
    Jan 20, 2014 9:48:59 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Rollins, Michael - Pediatric Surgery
    CONTAMINATED
    540.9
    Jan 22, 2014 12:08:00 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Barnhart, Douglas - Pediatric Surgery
    CLEAN
    540.9
    1
    Jan 22, 2014 5:38:00 PM
    APPENDECTOMY LAPAROSCOPY (PEDS)
    Rollins, Michael - Pediatric Surgery
    DIRTY
    540.0

  • How do I create a pivot table in numbers?

    How do I create a pivot table in numbers?

    SO HERE'S WHAT I GOT TO WORK:
    Truth is all the real functionality of categories and pivot tables exists in the formulas. You just have to
    Create a new table with a list of the categories in the header column.
    Add SUMIFS() formula from the browser into the next column.
    Enter your arguments and make sure to check "Preserve Column" for each of them.
    Although it might not be apparent, you can enter multiple test value and condition pairs.
    While I admit the formulas are not nearly so graphic as categories, they are cleaner and less restricting, and they aren't any more difficult to work with than pivot tables.

  • Using Compressor 4, How do you create a droplet to transcode from final cut files to mp4, mp3 and m4v formatting?

    Using Compressor 4, How do you create a droplet to transcode from final cut files to mp4, mp3 and m4v formatting?

    Take a look at this section; it's pretty clear.
    Compressor offers settings for each of the output formats you want. (For example, the m4v sttings for Apple Devices.)
    Good luck.
    Russ

  • How do you create a user defined functions  UDF and passing a value like a ID to GEt a Value.

    How do you create a user defined functions UDF and passing a
    value like a ID to GEt a Value.
    using a query.
    are there example.
    Thanks

    tons of examples at cflib.org - good place to start, even
    though many
    udfs there are a bit outdated in their code...
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • How can I create a line break in pages for iPad?

    On the Mac you can hold the shift key while pressing the return key to creat a line break. Only pressing the return key will creat a new paragraph of course.
    On the iPad you only can creat paragraphs. Pressing the shif key does not change that.
    Does anybody know how to force a linebrek on the pages app for iPad?

    Tap and hold where you wish to insert the line break. Select Insert from the pop up menu, then Line break.
    this might be helpful for future reference: http://help.apple.com/pages/ipad/1.7/

  • How do I create on-line PDFs which will read them to visually impared customers?

    I have seen a handful of unanswered questions about getting Adobe Reader to read aloud, on-line or downloaded PDF content to people who are visually impaired. None of them seem to answer the questions about Acrobat X.1 or backward compatibility. Before I spend $45 for one chapter from a book, perhaps one of you experts know of a simple site which explains how to comply with the ADA Americans with Disabilities’ Act.
    I know there are many variables like OS, Reader version and user ability to enable their sound card and configure a few settings.
    This summary is excerpted from chapter 23 of The Acrobat X PDFBible by Ted Padova, published by Wiley. Follow the link further below to download the complete 16-page sample chapter. Adobe Acrobat is compliant with U.S. federal code regulating document accessibility for vision- and motion-challenged persons. This means that screen readers can intelligently interpret the PDFs you create; in other
    words, PDF files can be read aloud in a reading order as a sighted person would read a document. Through an extensive set of keyboard shortcuts available in Acrobat, almost anyone with vision or motion challenges can share your documents and read them. In order for a document to be accessible, you must use authoring applications capable of delivering a document's structure to Acrobat. You need to know something about the internal structure of documents and which programs to use to create the structure required by Acrobat to make a document accessible. Not all the content in a document travels through the PDF-creation process with the information necessary to make a document completely accessible. Therefore, you need to perform some work in Acrobat to either add accessibility or to polish up a document for delivery to a screen reader in a form that makes sense to the user.
    In chapter 23 of The Acrobat X PDF Bible, you will learn how to check documents for tags and accessibility, add additional tags and arranger eading orders. Topics covered include:
    Using screen readers can interpret accessible PDF files and create audio output for people with vision and motion challenges. Using Adobe PDFMaker for Microsoft products, version 2000 or higher, including Word, Excel, Visio and so on; Adobe PageMaker 7 and higher; and Adobe FrameMaker, Adobe LiveCycle Designer, Adobe InDesign 2.0 and higher are capable of creating tagged and accessible PDF forms. Adding tags to PDF documents from a menu command within Acrobat Standard and Acrobat Pro and Pro Extended. Checking files for accessibility with the Quick Check command in Adobe Reader, Acrobat Standard, and Acrobat Pro and Pro Extended or with a Full Check in Acrobat Pro and Pro Extended. Tagging documents so they contain a structure tree. Elements in the tree locate respective elements in the document if you enable the Highlight Content menu command. Adding alternate text to elements in Acrobat by addressing the element's properties. http://www.wiley.com/WileyCDA/WileyTitle/productCd-0470612916.html
    Thanks if you know something helpful

    An accessible PDF is a well-formed Tagged PDF.
    You start with the proper authoring application that has tag management (there are not that many - discussed below).
    Your Tagged output PDF must be post-processed with Acrobat Pro.
    You evaluate the post-processed PDF.
    If satisfactory, you deploy the well-formed Tagged PDF.
    Adobe Reader or Acrobat (from 8.x forward) both provide the read out loud feature (ROL).
    While this is not equivalent to a full assistive technology (AT) application it can be useful for simpler narrative content.
    However, PDF page content consists of graphic objects (text included) that are painted to the page in a sequence/order that is "machine" centric rather than human centric.
    So, the raw print stream's read order can jump around. 
    (Look over ISO 32000-1 Forward paragraph 2 & Sections 8.1 & 8.2 to get a feel for what "PDF" is (& isn't).)
    PDF became an ISO Standard in 2008. This is currently ISO 32000-1. ISO 32000-2 is expected to be out in 2012.
    In terms of accessible PDF, ISO 14289-1 is expected to be out in 2012.
    ISO 14289 will define/describe the requirements for accessible PDF.
    Adobe introduced "Tagged PDF" with Acrobat 5.x (PDF version 1.4) "Full" release.
    For Acrobat 5.x this was an add-on that you took from the install CD-ROM.
    Since then "Tag" creation, management, etc. has been included with the install of: 
    (n.b., PDFMaker provides "tag management")
    --| Acrobat 6.x  Pro (PDF version 1.5)
    --| Acrobat 7.x Pro & 3D (PDF version 1.6)
    --| Acrobat 8.x Pro  &  3D (PDF version 1.7)
    --| Acrobat 9.x Pro & Extended (ISO 32000 & Adobe Supplement BaseVersion 1.7, ExtensionLevel 3)
    --| Acrobat X Pro (ISO 32000 & Adobe Supplement BaseVersion 1.7, ExtensionLevel 3)
    If the PDF is a well-formed Tagged PDF then ROL works its way down the structure tree (which can be viewed in Acrobat Pro's Tags panel).
    A well-formed Tagged PDF (built to comply with ISO 32000 currently & going forward built to comply with ISO 14289 / ISO 32000 will, in fact meet current Section 508 criteria and Section 508 Refresh criteria.
    Actually, it will met more rigorous criteria (Section 508, compared to other nations' requirements is somewhat anemic).
    For English, ROL will read left to right; top down.
    Not very useful for understanding tables and some other aspects of more developed content.
    AT uses the structure tree to convey the PDF's logical hierarchy and semantic content flow to users.
    So, a well-formed Tagged PDF is an essential for users of AT.
    Section 14 of ISO 32000-1 provides discussion of logical structure and tags.
    An ISO approved copy is at Adobe:
    ISO 32000-1
    In a nut shell, you'd want to provide a well-formed Tagged PDF.
    To effectively  consume a downloaded well-formed Tagged PDF end-users will want to use AT (NVDA (free, open source), JAWS, etc.) rather than Adobe Reader / Acrobat ROL.
    As to Ted's PDF Bible.
    I've got 'em on my bookshelf. Most excellent global references for all things Acrobat.
    However, to deploy well-formed Tagged PDF requires more detailed references.
    There is the up front authoring. Content must be mastered so as to support output of a well-formed Tagged PDF.
    There is the requisite post-processing of the PDF with Acrobat Pro.
    There is the requisite understanding of what the tags/elements are & how to properly use them.
    There is the need for specific "how-to" with examples.
    As to a "simple site" - - well, ahhh, "simple" precludes anything of usable worth, eh.
    A search on variations of "accessible PDF" will provide links to resources that provide "how-to".
    One resource is the Accessiblilty Forum at the Acrobat User Community.
    AUC Accessibility Forum
    An older thread there has links to Adobe "how-to" for various Acrobat releases. 
    An older list of reference material
    As the core of Acrobat's accessibility features are largely the same since Acrobat 5.x older how-to documents are still useful.
    For the most part, the most definitive discussions of the how-to & the why are in older Adobe documents.
    Of course, stuff comes & goes out on the web so the links may or may not be functional.
    (n.b., you'll have to copy-paste the URLs into a browser's address bar)
    However, a search on a document's title may provide an alternative link. 
    If not, send me a forum PM.
    Remember that the key to success (for a well-formed Tagged PDF) is in the authoring.
    Proper authoring with an application that provides adequate Tag management is critical.
    --| Adobe FrameMaker or InDesign with Acrobat Pro
    --|  MS Word with Acrobat Pro (for PDFMaker & ability to perform requisite post-processing of the PDF) for pre Office 2007
    --| MS Word 2007  / 2010 have a Save As PDF feature that can provide tag management -- but Acrobat Pro is still needed to perform requisite post-processing
    --| Open Office (& Acrobat Pro for requisite post-processing)
    Be well...
    Message was edited by: CtDave

  • Creating a Line Graph in a JSP...

    ive got to create a simple line graph (ability to have a title, xaxis, yaxis labels, plus label the data on hte x and y axis). right now the yaxis date is stored in an array of doubles and the xaxis just increment by 1. im having problems finding such a thing on the internet that doesnt depend on other classes or beans besides teh ones built into the jdk. i can have no other 3rd party software, is there anything like this out there? any java functions? thanks.
    Adam.

    Hi
    Keep in touch with the following thread, which is going in parallel, which is same as yours.
    http://forums.java.sun.com/thread.jsp?forum=45&thread=286179
    Thanks
    Swaraj

  • Create a line graph on EP 7.0

    We are trying to create a complex line graph in the portal which will pull data from SAP ISU. What is the best approach to developing this graph? Is SAP Chart Design suitable for creating a complex graph from scratch?
    Any help would be appreciate.

    U can open any one of this as per ur like and edit.
    Well, you cannot edit the standard delivered themes. You will need to make a copy of the standard one and edit that custom copy.
    Besides the theme editor in the portal, there is a tool called Eclipse theme editor which can come in handy to create/modify a theme. You can download this tool and the corresponding guide at the following location:
    http://www.sdn.sap.com/irj/scn/downloads?rid=/library/uuid/136dd890-0201-0010-1b9d-bd09a0d3b1d8
    Thanks,
    Shanti

  • 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

Maybe you are looking for

  • Error while generating PDF BI 7 Report Designer

    Hi, I am getting this error Error while generating PDF when i tried print version on report designer, I tried to find information on this error but there was no information regarding this , so posted here. Please let me know if you have any suggestio

  • My Macbook is extremely slow, hot, keeps getting stuck

    Problem description: My Macbook Pro keeps getting slower. I get the rainbow for everything. Even typing this up took me 10 mins. It gets hot and fan goes crazy when I close the lid. I can’t copy files as finder keeps closing and re-opening when I sta

  • How to get physical path of current working file?

    I WANT TO KNOW THE PHYSICAL PATH OF CURRENT WORKING FILE IN JAVA ON BOTH UNIX AND WINDOWS PLATFORM. HOW TO GET IT? THANK U

  • Generating multiple target xmls from one source xml using xslt mappings

    Hi, I need to create more than one xml file from one source xml file using xslt mappings in file to file scenario. Can you please let me know how this can be achieved. Thanks, Rajesh

  • Question about out-of-band when deploying NAC

    1. When I deploy NAC, a PC or user device is on the certified list. If User device is infected by virus, NAC Server can recognize device which is infected and prevent PC or not when I deploy out-of-band (not in-band)? 2. When I deploy out-of-band, ci