How to thicken the line in Line Chart?

Post Author: leongcy23
CA Forum: Charts and Graphs
I created a line chart and everything is smooth. But there is one thing that I'm not satisfied, which is I can't thicken the line of the chart. I try to look for Help, but it didn't show anything. From what I explore and try, I only can enlarge the marker, but not the line.
And another issue is, can I choose the color for the line? Because the report will auto generate the line with color that is not clear which is yellow which border me so much. I wonder is that I can choose the color of the line.
I really appreciate for someone that offer help. Thanks
Anson

Post Author: rcoleman
CA Forum: Charts and Graphs
What version of Crystal are you using? I can click on the line to highlight and then right click to get the option to format line. You can then choose color and line thickness. I'm using Crystal XI. It may take a few trys to highlight the line.. you have to hit it just right but I can't imagine this wasn't available in earlier versions.

Similar Messages

  • How to give the no of lines per a page in alv report

    hi
    could u plz inform me
    how to give the no of lines per page in alv report
    in ordinary report we can give line-count na
    how can we give in alvs.
    thanx
    kals.

    Hi Kalyan,
    There is another Forum(Abap Development) where u can post abap related stuffs and u can also get quick answers there..
    Cheers...
    Santosh

  • How to delete the Cost center line item data

    How to delete the cost center line item data of particular cost center and only one cost center is exisiting for that company code.
    Is there any way to delete the line items in that cost center.
    Can data archiving & deleting can help us..........
    does it have any effect over other cost center data....
    any input needed.........
    regards
    rajesh

    Hi,
    i found 2 reports for you:
    1) CO_TOTAL_WRI - Archiving CO Totals Records   
    2) RKCOITW1     - Archiving CO Line Items: Write Program        
    from 2) is a linlk to customize archiv-parameters
    -> start it with transaction se38 / sa38
    A.

  • How to delete the old schedule line release?

    Hello,
    How to delete the old schedule line release in apo?
    Generally GR has to be carry out  schedule line release  in r/3 which reduces the Schdule line release.
    But i do want do GR against old schdule line release instead i want to delete the old schdule line release.
    Please suggest.
    Regards,
    Sunil Patil

    Sunil ,
    /sapapo/cmds_del  is the tcode to deleted sales scheduling agreement confirmations and releases
    /sapapo/display_conf  is the tcode for displaying sls. sch.agr confirmations and releases
    The above two are in the supply chain collaboration menu
    /sappao/cmds_sc02 is the tcode to delete sales scheduling agreements . This tcode is in the application specific master data menu
    Thanks
    Saradha

  • How to delete the old schedule line release in apo

    How to delete the old schedule line release (from current date) in apo which is having schedule  firmed?
    Please suugest.
    Sunil

    How is it possible to delete old purchasing schedule lines in APO (that do not exist in R/3)?
    Though used successfully before, /SAPAPO/CCR will not reconcile our discrepancy in this case.
    Thanks in advance,
    Jim

  • How to remove the Blue Fuzzy Line in Spry Collapsible Panels

    Do anyone know exactly how to remove the blue fuzzy line that appears when a tab is focussed on in the Collapsible Panels feature?
    I heard there was some code that could be implemented into one of the style sheets which could solve this but I am yet to find a solution
    Thanks

    .CollapsiblePanelTab { outline:none; }
    Try that.

  • How to count the number of lines dynamically,

    In the below code am trying to read the lines which are selected using a check box, also am categorizing the contents depending on the follow up material.
    after displaying one category contents am displaying a line
    which also counts to a line in the internal table.
    My question is how to count the number of lines(ULINE) displayed dynamically.
    FORM GET_LINES .
      DATA: LV_LINES TYPE I,
            LV_TIMES TYPE I,
            LV_TABIX TYPE SY-TABIX.
      DESCRIBE TABLE IT_REC LINES LV_LINES.
      DO LV_LINES TIMES.
        LV_TIMES = SY-INDEX .
        READ LINE LV_TIMES FIELD VALUE IT_REC-CHECK INTO GV_CHECK.
        IF SY-SUBRC EQ 0 AND GV_CHECK IS NOT INITIAL.
          LV_TABIX =  LV_TIMES.
          READ TABLE IT_REC INDEX LV_TABIX INTO GWA_UPDATE.
          IF SY-SUBRC EQ 0.
            APPEND GWA_UPDATE TO GT_UPDATE.
          ENDIF.
        ENDIF.
      ENDDO.
    ENDFORM.                    " GET_LINES

    In the below code am trying to read the lines which are selected using a check box, also am categorizing the contents depending on the follow up material.
    after displaying one category contents am displaying a line
    which also counts to a line in the internal table.
    My question is how to count the number of lines(ULINE) displayed dynamically.
    FORM GET_LINES .
      DATA: LV_LINES TYPE I,
            LV_TIMES TYPE I,
            LV_TABIX TYPE SY-TABIX.
      DESCRIBE TABLE IT_REC LINES LV_LINES.
      DO LV_LINES TIMES.
        LV_TIMES = SY-INDEX .
        READ LINE LV_TIMES FIELD VALUE IT_REC-CHECK INTO GV_CHECK.
        IF SY-SUBRC EQ 0 AND GV_CHECK IS NOT INITIAL.
          LV_TABIX =  LV_TIMES.
          READ TABLE IT_REC INDEX LV_TABIX INTO GWA_UPDATE.
          IF SY-SUBRC EQ 0.
            APPEND GWA_UPDATE TO GT_UPDATE.
          ENDIF.
        ENDIF.
      ENDDO.
    ENDFORM.                    " GET_LINES
    The display function is:
    FORM DISPLAY_DATA .
      ULINE.
      WRITE :  /1 SY-VLINE, 'check',
                10 SY-VLINE, 'Plant',
               20 SY-VLINE, 'Material number',
               50 SY-VLINE, 'Follow up material',
               70 SY-VLINE, 'Safety stock',
              100 SY-VLINE, 'Partc'.
      ULINE.
      LOOP AT IT_MARC.
        MOVE: IT_MARC-WERKS TO IT_REC-WERKS,
              IT_MARC-MATNR TO IT_REC-MATNR,
              IT_MARC-NFMAT TO IT_REC-NFMAT,
              IT_MARC-EISBE TO IT_REC-EISBE,
              IT_MARC-PARTC TO IT_REC-PARTC .
        APPEND IT_REC.
        CLEAR IT_MARC.
      ENDLOOP.
      DATA: GV_TABIX TYPE SY-TABIX.
      LOOP AT IT_REC.
        GV_TABIX = SY-TABIX.
        READ TABLE GT_TOTAL WITH KEY WERKS = IT_REC-WERKS
                                     NFMAT = IT_REC-NFMAT.
        IF SY-SUBRC EQ 0.
          IT_REC-PARTC = GT_TOTAL-PARTC.
          MODIFY IT_REC INDEX GV_TABIX TRANSPORTING PARTC.
        ENDIF.
      ENDLOOP.
      LOOP AT IT_REC.
        WRITE : /1 SY-VLINE, IT_REC-CHECK AS CHECKBOX,
                10 SY-VLINE, IT_REC-WERKS,
                20 SY-VLINE, IT_REC-MATNR,
                50 SY-VLINE, IT_REC-NFMAT,
                70 SY-VLINE, IT_REC-EISBE,
               100 SY-VLINE, IT_REC-PARTC.
        AT END OF NFMAT.
          ULINE.
        ENDAT.
      ENDLOOP.
      ULINE.
    ENDFORM.                    " DISPLAY_DATA
    Solved

  • How to solve the middle dark line when I use officejet all in one the copy function?

    The printer function is good, but only has problem in copy functioln.  How to clear the middle dark line?
    This question was solved.
    View Solution.

    Hello tseng0719,
    I think it would be useful to have some more information in this case. For example:
    Which printer do you have? Do this happen when you copy from the flatbed or from the adf? Do this also happen when you scan a picture?
    A quick tip would be to clean the scanner glass as it migh very well be that it's just down to dirt on the glass (especially if this happens when you scan via the adf).

  • How to get the Number of lines displayed in  table control in bdc

    Hi,
    when we write a  bdc for a standard transaction, if we encounter a table control, we fill the values for each record like field(01), and the second record field(02) .......and so on..
    if only 3 records are displayed in the screen and if we have 5 records to be filled in the table control, how to write the logic for that?
    how to track of how many lines are getting displayed in the table control .. again it depends on the screen resolution i think..
    useful answers will be rewarded
    shekhar

    Hi,
    Here is the solution code for this :-
    data for controlling paging on screen 0102 
    DATA: W_MAXLINES(2) TYPE N, 
    W_NEXT_LINE(3) TYPE N, 
    W_PAGE(1), "y = page forward, n otherwise 
    W_SCRLEN(2) TYPE I, 
    W_SCRLINE(2) TYPE I. 
    DATA: BEGIN OF W_HDR. 
    INCLUDE STRUCTURE D020S. 
    DATA: END OF W_HDR. 
    DATA: BEGIN OF W_FLD OCCURS 100. 
    INCLUDE STRUCTURE D021S. 
    DATA: END OF W_FLD. 
    DATA: BEGIN OF W_LOG OCCURS 20. 
    INCLUDE STRUCTURE D022S. 
    DATA: END OF W_LOG. 
    DATA: BEGIN OF W_MC OCCURS 20. 
    INCLUDE STRUCTURE D023S. 
    DATA: END OF W_MC. 
    DATA: BEGIN OF W_DYNPRONAME, 
    PROGRAM(8) VALUE 'SAPMM60X', 
    DYNPRO(4) VALUE '0102', 
    END OF W_DYNPRONAME. 
    FORM GET_MAX_LINES. 
    set w_maxlines to the number of var-loop occurrences on the screen so 
    that we know when to page forward on screen 0102 
    also initialise w_next_line to zero for GET_NEXT_LINE 
    this subroutine caters for all cases - including screens without loops 
    CLEAR: W_MAXLINES, 
    W_NEXT_LINE. 
    IMPORT DYNPRO W_HDR 
    W_FLD 
    W_LOG 
    W_MC 
    ID W_DYNPRONAME. 
    LOOP AT W_FLD WHERE LTYP EQ 'L'. 
    MOVE W_FLD-LINE TO W_SCRLINE. "first var-loop line 
    MOVE W_FLD-LBLK TO W_SCRLEN. "depth of loop block 
    EXIT. 
    ENDLOOP. 
    IF SY-SUBRC EQ 0 
    AND W_SCRLEN NE 0. 
    sy-srows = total no of lines on screen 
    w_scrline = actual first line of loop so that 
    w_scrline - 1 = number of heading lines (before loop) 
    4 = no of lines at top of screen - command line, pushbuttons, 2 ulines 
    3 = no of lines after loop - uline & Page count 
    w_scrlen = no of lines in loop block 
    w_maxlines = sy-srows - ( wscrline - 1 ) - 4 - 3 
    and then 1 less but not sure why! 
    W_MAXLINES = SY-SROWS - W_SCRLINE - 1 - 4 - 3. 
    W_MAXLINES = W_MAXLINES - 1.
    W_MAXLINES = W_MAXLINES DIV W_SCRLEN. 
    ELSE. 
    MOVE 99 TO W_MAXLINES. "this required if no screen loop 
    ENDIF. 
    ENDFORM. 
    FORM GET_NEXT_LINE. 
    set w_page if page forward is required 
    W_NEXT_LINE = W_NEXT_LINE + 1. 
    IF W_NEXT_LINE GT W_MAXLINES. 
    W_NEXT_LINE = 1. 
    W_PAGE = 'Y'. 
    ELSE. 
    W_PAGE = 'N'. 
    ENDIF. 
    ENDFORM. 
    Hope it helps.
    reward if helpful.
    Regards,
    Sipra

  • How to get the number of lines of a FileReader

    I need to calculate the number of lines of a FileReader object. How can I do that ?

    I wrote the following some while ago. It assumes that a line is terminated by '\n' but it should be easy to adapt.
    import java.io.*;
    public class LineCounter
        public static int countLines(File file, String encoding) throws IOException
            int lineCount = 0;
            Reader reader = new InputStreamReader(new FileInputStream(file), encoding);
            char[] buffer = new char[4096];
            for (int charsRead = 0; (charsRead = reader.read(buffer)) >= 0;)
                for (int charIndex = 0; charIndex < charsRead ; charIndex++)
                    if (buffer[charIndex] == '\n')
                        lineCount++;
            reader.close();
            return lineCount;
        public static void main(String[] args)
            try
                File file = new File("/home/sabre/work/dev/maps/EUROPE.RIV");
                long startTime = System.currentTimeMillis();
                int lineCount = countLines(file, "UTF-8");
                double time =  (System.currentTimeMillis() - startTime) / 1000.0;
                System.out.println("File size = " + file.length() + " contains " + lineCount + " lines taking " + time);
            catch (Exception e)
                e.printStackTrace();
    }

  • How I fixed the colored vertical lines on my Mac Powerbook G4 17"

    Hello all,
    I know that many people with a Powerbook G4 17" are suffering from the colored vertical line problem on their displays.  This is were a pixel wide vertical line of color (yellow, green, purple, red, and/or blue) randomly appears on the laptop's display, usually between 24-36 months after purchase.  This is also known on various internet forums as the "bridget riley effect" -- named after a painter whose art looks very similar to this effect.  Many, if not all, of the laptops that suffer from this defect are 17" displays and have a serial number that starts with W8.  Mine starts with W85; you can check yours by looking underneath the battery.  It usually starts off as just one line, then two, then a few months pass and before you know it your screen looks like this:
    This is my screen two years after the first line showed up, which was two and half years after getting it in December of 2005.  Not so pretty. And completely useless without an external display, kind of killing the purpose of a Laptop.  As a film editor I needed my screen to see the images and more importantly I needed it to be mobile.  There's not always a screen to plug into. 
    I tried getting Apple to fix the problem, but apparently they're just ignoring the fact that almost all the laptops that came from this certain factory in Thailand (indicated by the serial number starting with W8) have failing displays.  They delete threads and forums on their website, and try to censor and ignore the problem as much as they can.  Unless some huge media blitz happens, or there is some kind of legitimate lawsuit, I highly doubt they ever will do anything about it, and you can't really blame them.  They are a big business and addressing this problem with cost them potentially millions in repairs and tarnish their reputation as a quality manufacturer, and Apple's biggest commodity is its reputation.  It ***** that Apple allowed this kind of thing to happen, but as things stand right now, it would be a poor business decision to fix it.
    So, fellow vertical line sufferers, AKA the W8 club, my advice to you is stop holding out hope that they will pay for your screen to be fixed and get it done yourself!  If you do it right you can get it done for between $60-$99.  Here's how I did it. 
    First off, know that this is a hardware problem.  There is no setting in system preferences you can change that will make the lines go away.  There are failing physical parts in your computer to blame and they need to be replaced. 
    Second, in order to keep things as cheap as possible, you are going to replace the parts.  It's actually pretty easy.
    Thirdly, you are going to need a whole new display.  I thought maybe if I replaced the display data cable (the cable that runs from the computer under the key board to the back of the screen) it might solve the problem very cheaply, since a brand new one only costs about $9 online.  I took the computer apart, replaced the cable, but the display did not change at all.  So the problem is the screen, not the cable.  I needed a whole new screen, however, a brand spanking new one can cost between $350-$600.  So I went on eBay, typed in my computer, and looked for computers that were being sold for "parts" or "repair."  These are usually much cheaper because they are not working computers, but you don't need the computer to work, you just need the display to work.  If you do this, make sure you read the descriptions.  If there's any mention of display problems, move on and keep looking.  You don't want to replace the display only to have the lines show up all over again a few months down the line.  They wont always give you the serial number, but obviously try to stay away from serial numbers that start with W8.  I found a used Powerbook being sold for parts for $63.  It didn't have RAM, or a Hard-drive, or screws to keep the keyboard on, but the display apparently had no issues.  With shipping and handling it cost me $94 total and three days to get it.  The serial number started with V7.  I'm sure with a little patience and vigilance, you can find something just as cheap or even cheaper. 
    NOTE: Some powerbooks have High-Res display screens, so make sure you know which screen yours has so you know which to look for. 
    Now, how to actually replace the display.  I used an awesome website called ifixit.com.  They give you detailed easy-to-follow instructions with photographs.  I'll let them give you the nitty gritty of how to replace the display.  Here is the actual How-to guide I used:
    http://www.ifixit.com/Guide/Installing-PowerBook-G4-Aluminum-17-Inch-1-1-67-GHz- Display/258/1
    The only tools you really need are a small phillips head screwdriver and a T6 and T8 Torx screwdriver (they are starred on the end, as oppose to crossed like the end of a phillips head).  They say you need a "spudger" but I didn't.  You can get these at any hardware or auto-parts store.  Return them when your done if you are really on a budget, but you might want to take more part from this new computer in the future, so your call.  You'll need to print out the instructions first, or use another computer to follow them since you obviously can't use your Powerbook.  Find a flat, well-lit work space, preferably near a TV so you don't get bored while working, and use the how-to guide to switch the old display with the new one.  It only took me a couple of hours to finish the whole thing, and I didn't have to pay a repair man hundreds.  My display works perfectly now!  It's so nice to be have the mobility of a laptop again (especially since the computer i got off of eBay came with a battery that can actually hold a charge).
    NOTE: There are a bunch of screws and a few small parts that will need to be taken out while replacing the display, and its important they all go back in their proper spots.  So I highly recommend you take a long piece of tape, loop it, and stick it flat onto the side of your work space.  As you take out each screw or small part, stick them in order to the tape.  This way nothing gets lost and when you work backwards to put your computer back together you'll always know which screw or small part is next in line and which one the how-to guide is referring to.
    I really hope this helps people with this problem.  This seems to be the only solution.  And for less than $100 bucks, I think its worth it, especially since you now have back up parts for any other part of your computer that might fail in the future.  My disc drive stopped working recently so I'm replacing it with the one that came with the computer I got off eBay; a $90 part.  I tried to make this as easy-to-follow, practical, and comprehensive as I could -- for as cheap as I could.  GOOD LUCK!!!
    -R

    I suspect not. There are long threads with hundreds of reports, most with PowerBooks whose serial numbers began with W8 (or W85). Still there is no Repair Extension Program for this issue.
    At this point, your only recourse is to discuss the issue with Apple Consumer Relations at 1-800-767-2775, if you are in North America.

  • How to find the open po line item by using EKKO &EKPO tables

    Hi Gurus,
        what i am doing is finding out the OPEN PO line item from EKPO table. I know it has to check the ELIKZ field from the EKPO table.Can you please clarify me on the same in more detail.I has to use the ELIKZ  EREKZ fields from EKPO table.

    Use the field ELIKZ in EKPO. If the field is Blank its an OPEN PO Line Item
    refer this link.
    How to open PO line item

  • HOW TO SET THE OUR OWN LINE SPACING ?

    hai frenz...
    i jus wanted to know how to set the our own spacing between the records or lines...
    i.e.,
    there shub be no spacing between the records when its getting displayed...
    for e,g.,
    actually my records are in the output screen displaying like this.....
    hyundai   100    200
    maruthi    100   300  
    tata         200    200
    but i want to be displayed like this...
    hyundai   100    200
    maruthi    100   300  
    tata         200    200
    how to do that........ reply me....

    Hi,
    Use SKIP Abap Statement
    SKIP 2.
    SKIP TO LINE 1.
    SET BLANK LINES {ON|OFF}.
    Example
    REPORT demo_skip NO STANDARD PAGE HEADING.
    DATA sum TYPE i.
    TOP-OF-PAGE.
      SKIP.
      ULINE.
    START-OF-SELECTION.
      DO 10 TIMES.
        WRITE / sy-index.
        sum = sum + sy-index.
      ENDDO.
      SKIP TO LINE 1.
      WRITE: 'Numbers with sum' COLOR COL_HEADING,
              sum               COLOR COL_TOTAL.

  • How to use the "target Data lines"?

    Hello,
    I want to program some DSP effects and filters with Java. I know to use the "Clip" and the "Sound" data lines in the Java Sound API, but it is difficult to me tu use the "target data lines" to do what I want to. So I have several questions :
    I have found how to convert a clip to a target data line. I have understood how to get the int from the sounds via the target data line. But, when I have done the operations with this int, how to do again a sound from the int? Wich method must I use to "convert the int to a sound"?
    Normally, oscillators and filters need to do an integration using the sample rate. Does anyone could give to me some exemples?
    I have found code sources for C++ for DSP. Where could I find the same for Java?
    Do you know a book about this subject, I did not find any?
    Thank you for your help.

    My idea is to create a byte array from the audio clip via a ByteArrayOutputStream, then to create an int or a float, then do the operations, and then do another audio line from the new byte array. Am I wrong?This is correct, I believe.
    This byte array will have a size of 16 (for PCM or wave files) surrely.Not necessarily. If you're using 16-bit samples for PCM data, then every 2 array positions will be "a sample". Your byte array will be 2 times the number of samples.
    You'll want to pull the data 2-bytes at a time and do basiclly:
    byte[] data_in = new byte[2];
    myTargetDataline.read(data_in, 0, 2);
    short sample = (data_in[0] << 8) + (data_in[1]);Then do whatever you want to your sample, and then write it back...
    byte[] data_out = new byte[] {
    (byte)(sample >>> 8),
    (byte)(sample )
    mySourceDataline.write(data_out, 0, 2);I used a short instead of an int because it's 16-bit data, so it's a short. PCM may be an "unsigned" short, but you'll have to check into that yourself ;-)
    To be perfectly honest, I've never done this so my sample code will probably need to be tweaked. But I hope it helps you get headed in the right direction, and gimme an update when you try it out.

  • How to set the SCLK & SDO lines low...

    Using a USB-8451 and need to set both the SCLK & SDO lines low as part of a prefix packet that I am sending to a device.  how do I do it in LabView?
    I can set the SCLK low using the 0 (Idle Low) input to the 8451 Config Property node but am not sure how to set the SDO low as needed.  

    steve05ram360 wrote:
    Yes it is SPI.  The device is an MB16024 LED driver from Macroblock.
    Are you actually referring to the http://www.mblock.com.tw/products_mbi6024.html? (Note the "I" instead of the "1") Where does it say it's a SPI device? I don't see it saying SPI anywhere on that page. Do you have the actual datasheet? I was unable to find it on their web site.
      maybe I cannot use the 8451 for this task??  ... 
    You can always use bit-banging mode.

Maybe you are looking for

  • [solved] new xorg not autodetecting touchpad

    After I upgraded to to xorg server 1.6, my touchpad doesn't work.  Not sure what is going on.  There doesn't seem to be any errors in the log. The mouse that is detected is a usb one I found in a corner trying to figure this out. Any ideas? Thanks My

  • How difficult is upgrading 10.6.8 server to 10.9 server?

    An earlier question was satifactorily answered telling me I can use 10.6.8 server with machines running Mavericks 10.9. What remains unclear is, if I have to update the 10.6.8 server to OS X Mavericks first before upgrading to OS X Mavericks Server,

  • Use XSLT mapping for multiple payloads

    Lydia, Do you mean multiple mapping as <message1> Payload1 </message1> <message2> Payload2 </message2> If you are generating XSLT mapping using any tool then you have can take xsd from the messagemapping and just map it. in you  target structure mess

  • Second hard drive i dv9010us

    After successfully installing a second drive, I discovered that the original c: drive has changed positions from drive 0 to drive 1.  The machine seems to function OK, but slower.  When I remove the second drive, the drive maintains its position as d

  • How to insert a tick?

    how to insert a tick?