How to increase line thickness in line charts?

Hi,
I am using Crystal Reports 11.
I can change line thickness for only 4 series using "Format connector line" in the Design window. When the chart has more than 4 series, I can't change the thickness of lines except for the default 4 series.
I try using the other method to change the thinness of line, i.e.:
Got to the Preview window - click the line in chart - right click and go in Format Connector Line - change the thickness.
But, when I close the Preview window and re-open it again, I find that the situation is the same: line thickness is changed for only 4 series.
It looks like this way is effective just in computer memory.
Is this caused by the old version of CR?
If not, any approach to handle this problem?
Thank you in advance.

Thank you.
It is a group level chart.
I find "Apply Changes to All Charts" under Chart Menu, but after I made some changes on the chart, it is still grey and I could not use it.
How to do?
Edited by: Holdup on Feb 23, 2012 7:27 PM

Similar Messages

  • How do you increase the thickness of lines?

    Hi
    Hope you can help, im writing an applet which requires lines to be drawn on screen. I know how to draw the actual line but i'm having problems with the thickness of the line.
    I would like to make the line thicker but im not sure how to do this
    Any help would be much appreciated

    Look at the Stroke object that Graphics2D uses. One way to use it is like so:
    Graphics2D g2 = (Graphics2D)g;
    int lineThickness = 4;
    g2.setStroke(new BasicStroke(lineThickness));Here's a more detailed example that uses a JApplet:
    import java.awt.BasicStroke;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.GradientPaint;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.RenderingHints;
    import java.awt.geom.Ellipse2D;
    import java.awt.geom.Line2D;
    import java.awt.geom.Rectangle2D;
    import javax.swing.JPanel;
    class GraphicsEg2
        private JPanel mainPanel = new JPanel();
        private JPanel graphicsPanel = new JPanel()
            protected void paintComponent(Graphics g)
                super.paintComponent(g);
                myPaint(g);
        public GraphicsEg2()
            mainPanel.setPreferredSize(new Dimension(800, 800));
            mainPanel.setLayout(new BorderLayout());
            mainPanel.add(graphicsPanel);
        private void myPaint(Graphics g)
            drawMyRect(g);
            drawMyEllipse((Graphics2D)g);
        private void drawMyEllipse(Graphics2D g2)
            Ellipse2D myEllipse = new Ellipse2D.Double(10.0, 10.0, 200.0, 100.0);
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
            g2.setStroke(new BasicStroke(5));
            g2.setPaint(Color.white);
            g2.fill(myEllipse);
            g2.setPaint(Color.red);
            g2.draw(myEllipse);
        private void drawMyRect(Graphics g)
            Graphics2D g2 = (Graphics2D)g;
            Line2D line = new Line2D.Double(10, 10, 40, 40);
            g2.setColor(Color.blue);
            g2.setStroke(new BasicStroke(10));
            g2.draw(line);
            Rectangle2D rect = new Rectangle2D.Double(20, 20, 600, 400);
            g2.draw(rect);
            g2.setPaint(new GradientPaint(0, 0, Color.blue, 300, 200, Color.green, true));
            g2.fill(rect);
        public JPanel getMainPanel()
            return mainPanel;
    }and the JApplet code:
    import java.awt.Dimension;
    import javax.swing.JApplet;
    public class GraphicsEgApplet extends JApplet
        public void init()
            try
                javax.swing.SwingUtilities.invokeAndWait(new Runnable()
                    public void run()
                        createGUI();
            catch (Exception e)
                System.err.println("createGUI didn't successfully complete");
        private void createGUI()
            getContentPane().add(new GraphicsEg2().getMainPanel());
            setSize(new Dimension(700, 600));
    }Edited by: petes1234 on Feb 12, 2008 5:17 PM

  • Formating Line thickness for lines in graphs with more than 6 lines.

    I have a line graph with more than 6 lines on it and I'm trying to make them all 1px.
    I can specify a line thickness for the first 6 lines but after that, the lines go back to the default thickness.
    Is it possible to change the default line thickness for a graph or format the line thickness for the 7th line and more?

    Good news! I found out how to format more than 6 lines of data and it's really simple to do!
    In the bottom left hand corner of the Format Chart Data, next to the Clear All button, is a button marked ADD.
    If you click this button, another row is added allowing you to format the 7th line of data.
    Click again and you get a row for the 8th line and keep clicking to add more lines.
    I'm making a note of it here in case it is useful to someone out there who searches on this problem in the future.
    Edited by: user2052587 on Jan 6, 2010 2:45 PM

  • How to Increase Border Thickness of Docking Container

    Dear Experts,
    I am working with Docking containers in my project. Is it possible to increase the thickness of the border of a Docking Container? I dont see any method as such in the respective class, but there is an attribute called WS_BORDER. I am not sure of how and where to use this attribute. And one more Question, is there any possibility to have a Tool Tip text when the cursor is placed on the border of the Docking Container?
    Thanks in Advance.
    Best Regards,
    rama
    Edited by: newtoAbap on Dec 9, 2009 12:01 PM

    No, imagine we have two docking containers (both horizontal). Now, we can use the mouse and drag those controls on the screen right. Thats what i am talking about, the border is so thin actually can we make it thick?
    Best Regards,
    rama

  • How to set line thickness in line chart?

    There's really no upper bound on how many series might be displayed on my graph, but say I'm graphing 52 series.
    Is there a way to set the thickness of the lines without generating a graph of 52 things and settting the thicknesses individually?
    What I'm doing now: preview the report with parameter that will make for a lot of series. Then click each series, set the width, then when done tell it to apply the customization to all graphs.  Is there a speedier way?
    Thanks

    Sorry for re-surrecting this old thread, I could not find anything mroe recent on this topic.  If I have 4 data series, I can easily change the line and marker format for each series in the Design window.  My chart however has 6 series.  How do I format the line and markers of the 5th and 6th series?  It appears that any changes that I make in the Preview window, is not carried over to the Design window, and regardless of how many data series there are, the standard 4 are all that is displayed in the Design window.  (I am also using Crystal XI)
    Edited by: VanWykie on Mar 30, 2010 2:15 PM
    Edited by: VanWykie on Mar 30, 2010 2:16 PM

  • How to increase the size of piechart in ssrs?

    Hi how to increase the size of piechart in my design mode its showing very large one,when running/preview mode its displaying very small, i have total 10 values to dispaly in the legend series values,So here i have set the visibulity option to out side ,
    so if the pie chart is dispalying small ,the values of the legend will come in one place and ,so can you suggest me how to increase the size of my chart and how would i show my legend values separatly without closing one by one.
    Can some one please help me out for this..

    Hi Ychinnari,
    According to your description that you want increase the size of pie chart in the design mode to make all the ten values in the legend series to display, you have do some setting but the pie chart still display very small and not display some of the
    values, right?
    I have tested on my local environment and found that the display of the chart legend value can be effect by many factor: the size of the chart, chart area position and chart legend position.
    Details steps below for your reference about how to set the properties to make all the legend values display correctly:
    Select the Chart properties and expand the size and increase the values for the width and the height, then preview to see if all the legend values are display.
    If this do little help, the problem due to the chart area position and chart legend position need to reset too.
    Select the chart area properties and expand the CustomPosition under the Position, choose the Enabled to true and  reset the Width, height of the pie chart.
    Reset this properties to make the chart area more Narrow, thus we can set the Legend area more wider.
    Select the chart Legend properties and expand the CustomPosition under the Position, choose the Enabled to true to reset the Width, height of the chart Legend
    Reset this properties to make the Legend area more bigger (wider and higher) thus it will display more values in the Legend area.
    If your problem still exists, please feel free to ask.
    Regards
    Vicky Liu

  • Line thickness in Apex 4.02 flash chart for Legend

    Does anyone know how to set Line thickness in Apex 4.02 flash chart for Legend?
    My users can read the label fine, but the part where it shows the line color is very small and hard to match to the chart.

    Many attributes can be set in the Chart Attributes page Custom XML section. Line thinkness. Legend font size, height and width. But I haven't found a setting for the "icon" size. Even thought I increased font size and the size of the Legend on the page, the legend "lines" remained unchanged in size.

  • Any Way to Change Thickness of Connector Lines for all lines of a Chart?

    Post Author: ScottL
    CA Forum: Charts and Graphs
    Hi All,
    I am trying to change the thickness of a Chart's Connector Lines for all lines of a chart and cannot find a way to accomplish this. I can go into Report Preview and individually change the thickness one at a time, but what if I do not know how many lines I will have (as in a Line Chart) ? I can't find a way to do this through Crystal Reports XI.
    Many thanks in advance!
    Scott

    I think it's even easier to just match frame the "source file"... put your playhead on the clip you want to speed change in your sequence. Then type optioncmdf. Perform the speed change in the Viewer, then simply cut it in... Might help to put it up above the older, use the double arrow selection tool facing right to move the clips past this change later... pull the upper track speed changed clip down over the old, and viola.
    Gotta say though, it's a lot easier to perform the speed change in the Viewer, and edit it all in as you go rather than doing it after you've put the clip in a sequence. (not always possible to determine what the speed change should be maybe, but sure easier.... FCP 7 handles this problem a lot better for sure, and worth the upgrade price if your machine is compatible.
    Jerry

  • How do I increase the number of lines presented in a drop down list?

    When I am entering a single character/number for each of a random selection of three letters in a password verification, I get a drop down list from A to S only, the first 20. Accessing letter T to number 9 means scrolling down. How can I increase the number of lines in a drop down box to 36?

    Hi canddski,
    If you are taking about an interface on a website, this is up to the ui designer. But there is a reflow that depends on screensize for the Firefox UI.
    You can use asp to control the list:
    [http://forums.asp.net/t/1970301.aspx?How+can+i+display+selected+no+of+records+from+datatable+using+dropdown+list+without+database+]
    but also try asking on stackoverflow.com

  • How to Increase the Number of Rows/Lines in a document

    Dear Experts,
    I have pre printed stationary that prints only 5 rows before moving to the next page. How can I increase this to 10 lines or more ?
    Regards

    Hi Martin,
    Which layout is this?  Is it the Cheque For Payment?  If it is, there is a setting to determine the max lines per page and even if you change the repetitive area setting it will still only print 5 lines.
    The setting is in:
    Administration / System Initialisation / Print Preferences.
    On the Per Document tab, select Cheque For Payment.  Change the Maximum Lines field.
    If it is not Cheque For Payment, try Jimmys solution.  The amount of rows though, is also dependant upon things such as the size of your page headers and footers and how much space is left after they have printed, so if you still can't get more lines per page, make those smaller.
    Regards,
    Adrian

  • How do I change the line color in a chart in Numbers on my iPad?

    How do I change the line color in a chart in Numbers on my iPad?

    Whenever I try to shift+direct select it thinks I want to move the line, so as I shift + direct select and drag my mouse across the line (to highlight it all) it moves a chunk of the line and turns it into a near perpendicular line.
    I found the appearance window, it just says "Path" (the color I want it to be that it's not)
    "Stroke" 4pt
    "Fill" (the color I want it to be that it's not)
    "Opacity": Default
    And some other buttons. I think I'll try the help line tomorrow, I know I saw a customer service number somewhere and I'm only here because the chat was unavailable. This is only one of my 3 problems with my assignment so I'll search here for answers to the other two. Learning new things is rarely fun.

  • How to increase line-size in Function module

    Hi All,
        How to increase line-size in function module..
    I am displaying a list in function module.The output is of width more than 150..
    Regards,
    Srinivas

    Hi Srini,
    U can try by setting the system variable SY-LINSZ = 150.
    or
    Use new page command.
    Vasanth

  • How to increase the line items against the std no of line items in MIGO

    hi,
    I have PO with more than 100 line items
    During GR system is showing the error message as
    Maximum number of items F1 reached
    What is the standard no of line items in MIGO
    And how to increase the line items
    Is there any notes to apply
    plz give sutable solution
    K.Raghuram

    Do you get message F5727 "Maximum number of items in FI reached"? reason is that in FI the posting line has a three-digit line item number (BSEG-BUZEI).
    SAP's note 117708 provides a modification. I am pasting solution below.
    Via the summarization you can post documents with more than 999 items in
    FI.
    The modification required for this is small, in addition you have to
    change 2 tables. The modification is carried out in FI not in invoice
    verification.
    To activate document summarization in FI proceed as follows:
    - The changes are described in Note 36353 and for the
    modification in Note 77161. You may also have to apply Note
    67640 so that the document summarization affects inventory
    management.
    An advice for the notes:
    36353: Solution point 3: Field name WERKS
    77161: Solution point 2: Maintain table TTYPV with Transaction
    SE16
    - this has the following effects; you can no longer clear the
    GR/IR clearing account on purchase order item level (but only
    on purchase order level) and you can only display the FI data
    summarized (also see Note 36353)

  • How to reduce a thickness of rectangle line ?

    In Custom Adobe form i want to make a big rectangle box and in that box so many small size rectangle boxes available ,it is looking like drawing lines on big rectangle box(dividing some part ) ,at that time small rectangle boxes lines are overloap with each other ,at that time 2 or 3 small rectangle boxes border lines mix with each other result is that border lines colour are looking thickness but all lines colour thickness must be same.how can i do? That small boxes are has binding .if remove that boxes I loss the some data.how can I solve this problem. please find the attachment.

    Hi Howard,
    You can achieve this by using Menu. Click on the line then Select in the Menu as follows:-
    Format -> Line -> Line Width
    Choose appropriate line thickness.
    Have a nice day...
    Raja Angamuthu B

  • How to make line thicker?

    When I use "g.drawLine()" to draw a line,the size of the line is fixed.But I would like to make the line thicker.How to do that?Thanks!

    one of my favorite methods :)
        void drawThickLine(Graphics2D g, double x1, double y1, double x2, double y2, double width) {
            Stroke orig = g.getStroke();
            BasicStroke wideStroke = new BasicStroke((float)width);
            g.setStroke(wideStroke);
            g.draw(new java.awt.geom.Line2D.Double(x1,y1,x2,y2));
            g.setStroke(orig);
        }Enjoy!

Maybe you are looking for

  • Received two payment without Buying anything!

    Dear Sir/Madam, I received 2 SMSs that I am using my credit card in Itunes amount of:  LU-629939 $45.96 LU-227161 $49.99   Both on 11-04-2013   But in fact I didn't buy anything !  Kindly confirm these two payments. Best Regards, Ahmed Bumjaid

  • Commodity code from GTS to Feeder - full load

    Which report can I use to transfer all materials / commodity codes to the feeder system.  I know that report /SAPSLL/STAWN_RETRANSFER  can be used to select the materials as of a certain date, but I want to re-synchronize GTS with the feeders because

  • Transaction Problem in Session Facade Design Pattern

    Hi Well Sorry for giving wrang title to the topic, coz of which I have not received and reply. I am using session facade design pattern. I have Action class calling session facade method "getData" . This method calls "findByPrimaryKey" method in BMP.

  • 802.1x with wireless - pls help :(

    I am trying to configure 802.1x on my wireless router (877) but no luck. Here is a part of my config. Radius is on Small Business Server 2008 aaa new-model aaa group server radius rad_eap server 172.16.1.x auth-port 1812 acct-port 1813 aaa group serv

  • Time capsule traps iTunes library

    I copied my iTunes music library to my time capsule. Now I can't figure out how to copy it off the time capsule HD. The original library resided on a Firewire HD and is now corrupted. Time machine was not used.