How to display axis labels on both x and y-axis of a column chart

hi,
 i have an urgent requirement of having axis labels on both x and y axis
In x-axis i got it by sorting order also but in y-axis i'm unable to do
i need in y-axis ,my column values are L1,L2,L3,----L10these shuold display in y-axis in sorting order and 0 in axis should remain as it is ..........how to take the interval ....? as of now i'm using Auto
my y-axis values shud look like 0,L1,L2,L3,L4,----L10can anyone get perfect solution
thanx in advance
lucky

Hi Lucky,
Per my understanding that you want to display the values(Column1) like  "L1,L2,L3....L10" which comes from the "Series group" in the Y-Axis label and keep the row group in "Category group" to
display in the x-axis and Numric column(1,2,3,4) in the "Value", right?
Gernerally the lable display in the y-axis is automatically based on the value of the Numric column in the "Value" and it default is numbric labels.
I have tested on my local environment and in your scenario, i suggest to hide the axis lable of the y-axis and create an tablix to only show the one column contains the values (L1,L2,L3,L3) to display in the place of the hidden y-axis label.
Detais information about to design an new y-axis label ae below for your reference:
Create an tablix to display only the row group of the "Column1" ( for the
Column1 may have duplicate values, you can create parent row group for this column and hide the detail column by setting the "Column Visibility").
Right click the y-axis to select the "Vertical Axis Properties" and select the "Labels" on the left pane to check the "Hide Axis labels"
Select the Chart Area and in the properties set value of left=0 under the CustomPosition:
Set the border style=None for both the Chart and Column1's row group
Drag the tablix at the position near the hidden y-axis and set the size of both the chart and the tablix to make the value in the tablix row group(Column1) to be align with the y-axis label:
Right click the "Chart legend" to delete or hide the legend
If you still have any problem, please feel free to ask.
Regards,
Vicky Liu
Vicky Liu
TechNet Community Support

Similar Messages

  • How to create the Business System both sender and receiver in SAP XI / PI

    Dear All
    kindly let me know how to create the Business System both sender and receiver in SAP XI / PI
    Regards
    Blue

    Hi,
      If by any chance you are not able to find these....
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/workingwithSystemLandscapeDirectory+%28SLD%29&
    http://help.sap.com/saphelp_nw04s/helpdata/en/24/8fa93e08503614e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/f1/92b248db68409487661ff13239127d/content.htm
    Regds,
    Pinangshuk.

  • How do you change categories in both transactions and budget report in the personal budget template in Numbers?

    How do you change categories in both transactions and budget report in the personal budget template in Numbers?
    I am working on both an iPad mini and a MacBook Air. 
    Whenever I change the category name in the budget report, it does not actually show up in the transactions tab when I am using the Personal Budget Template. 
    I have already tried copying and pasting a category in the budget report to add another row but it still does not show up in the transactions tab. 

    Hi golmeda,
    Check out this answer here:
    Using Numbers Personal Budget template I can't figure out how to change the categories in both tabs (budget and transact…
    If it is unclear let me know.
    quinn

  • How to display mapviewer labels in two lines instead of one?

    Hi,
    I have been using the addJDBCTheme to display the map along with the labels as follows:
    mapviewer.addJDBCTheme("aaa","a", "SELECT geom, col1 || ':' || col2 label_value from table_name","GEOM","","styleName","label_value","T.ROAD NAME" ,false);
    So the label is displayed as col1Value:col2Value.
    Now I need to display the label as follows:
    col1Value
    col2Value
    I tried using this
    mapviewer.addJDBCTheme("aaa","a", "SELECT geom, col1 || chr(10) || col2 label_value from table_name","GEOM","","styleName","label_value","T.ROAD NAME" ,false);
    But it doesnt work. This displays col1Valuecol2Value
    So I tried using this:
    mapviewer.addJDBCTheme("aaa","a", "SELECT geom, col1 label_value from table_name UNION ALL SELECT geom, col2 label_value from table_name","GEOM","","styleName","label_value","T.ROAD NAME" ,false);
    This actually works. Meaning it displays the label in two lines. But the two lines are almost attached together, there is no space between them at all. It is sometimes very difficult to read.
    Would really appreciate any suggestions to resolve this issue.
    Is there any other solution to display a label in two lines? I tried changing the label style to set the line-height. But that does'nt work either.
    Lakshmi

    Multiline label aren't supported as yet.
    JayantDoes MapViewer 10.1.3 (the latest version for present) support it?

  • How do I roll a ball along both x and y axis?

    I am trying to roll a 2D ball in 3D space that only moves on the x and y axis through a maze. I would like it to be rotating 360 degrees based on the curcumference so it looks like it is rolling no matter if it is moving along the x or y axis. I feel like it should be pretty straight forward to figure this out but I am at a loss.
    The ball rolls through the maze in an expressive way not at a constant speed but always in a straight line. Not every keyframe is at a corner direction change which makes things more difficult. I am just starting to learn about expressions so much of this is not based on knowing just forum searching and through trial and error.
    https://vimeo.com/89638507
    I have tried multiple variations on these three directions:
    distance=position[0,1];
    circumference=width*Math.PI;
    distance/circumference*360;
    This moves fine along the y axis or x axis.
    (length(position,position.value_at_time(0)[0,1])/(width*Math.PI))*360
    This works fine when moving on the y axis but the x axis rotates too slowly and then about 12 seconds in it stops completely and goes haywire after that.
    ball = thisComp.layer("Ball").transform.position;
    s1 = ball.velocityAtTime( time )[0];
    s2 = ball.velocityAtTime( time )[1];
    circumference=width*Math.PI;
    if
    (s1 > 1 || s1 < 1)
              transform.position[0]/circumference*360;
    if
      (s2 > 1 || s2 < 1)
              transform.position[0]/circumference*360;
    I was hoping I could switch from x axis to y axis when it's velocity slows at every corner. Only rotates when moving along y axis.
    I am not sure if it is possible or if there is a simple way that I don't know about (which is probably the case).
    Thanks in advance

    I think your expression is going to need to loop through all previous keyframes and add up the distances traveled (I'd use length() to calculate each distance) between each pair of keyframes and then add the distance traveled from the most recent keyframe to the current time. Then you can use your circumference formula to calculate the total angle. That assumes that there's no backtracking (wheel always turning in same direction)--otherwise, it will be more complicated.
    Dan

  • How to display desired label i/o values on JuRadioButtonGroupPanel ?

    Hi ,
    Appreciate if someone can help !
    I have created a Radio Buttons group by using JURadioButtonGroupPanel on the JPanel, then I entered 2 values (Y,N) in the Radio ButtonGroup Binding Editor under set of values field. When running the form, I could see the values. However, What should I do next if I want to show more meaningful wordings ('Yes', 'No') i/o the values (Y,N) on the screen ? Thanks in advance.
    Calvin

    I try to avoid using JURadioButtonGroupPanel and try to use comboboxes or checkboxes instead. But that's not always feasible. I have just recently noticed the bug about the radio buttons not being enabled/disabled based on the specification and/or an overwritten isAttributeUpdateable in the view object/entity so I have not had the time to figure out a solution or posting a bug report.
    But the "rowImpl" text for the radio button labels it seems to me that an extra refreshControl solves it most of the time. I subclassed JURadioButtonGroupPanel, below is my overwritten createButtons method which checks for this "ugly label", refreshes the control and tries again (max 10 times). Maybe not the most elegant solution but sadly ADF Swing does not often give space for the most elegant solutions (unless you study the framework very hard (by reading the source code, documentation is sparse) and rewrite big chunks of it).
    public class FSRadioButtonGroupPanel extends JURadioButtonGroupPanel
      public FSRadioButtonGroupPanel(
      public AbstractButton[] createButtons(Object values[])
        AbstractButton[] ret = super.createButtons(values);
        if (ret != null && ret.length > 0)
          int count = 1;   
          while (ret[0] != null && ret[0].getText().contains("RowImpl") && count <= 10)
            System.out.println("Ugly Tab text, recreating: " + count);
            getModel().refreshControl();
            ret = super.createButtons(values);
            count++;     
        return ret;
    }

  • How to display data with the same text and key in the drop down list?

    Hi All,
    Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    REPORT ZTESTING.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST,
          c(20) type c.
    *      c = 'select any'.
    data:begin of itab occurs 0,
          kunnr like kna1-kunnr,
          name1 like kna1-name1,
         end of itab.
    data:begin of jtab occurs 0,
          kunnr like kna1-kunnr,
          land1 like kna1-land1,
         end of jtab.
    PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
                              default 'SELECT'.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'p_list'.
    VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    APPEND VALUE TO LIST.
    VALUE-KEY = '2'.
    VALUE-TEXT = 'Country'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    start-of-selection.
    select kunnr name1 up to 20 rows from kna1 into table itab.
    select kunnr land1 up to 20 rows from kna1 into table jtab.
    case p_list.
    when '1'.
    loop at itab.
    write:/ itab-kunnr,itab-name1.
    endloop.
    when '2'.
    loop at jtab.
    write:/ jtab-kunnr,jtab-land1.
    endloop.
    endcase.
    <Added code tags>
    Moderator Message: Please use the "code" tags to format your code snippet.
    Edited by: Suhas Saha on Nov 17, 2011 11:19 AM

    shawnTan wrote:
    Hi All,
    >
    > Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    >
    >
    REPORT ZTESTING.
    >
    > TYPE-POOLS: VRM.
    >
    > DATA: NAME  TYPE VRM_ID,
    >       LIST  TYPE VRM_VALUES,
    >       VALUE LIKE LINE OF LIST,
    >       c(20) type c.
    >
    > *      c = 'select any'.
    >
    > data:begin of itab occurs 0,
    >       kunnr like kna1-kunnr,
    >       name1 like kna1-name1,
    >      end of itab.
    >
    > data:begin of jtab occurs 0,
    >       kunnr like kna1-kunnr,
    >       land1 like kna1-land1,
    >      end of jtab.
    >
    > PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
    >                           default 'SELECT'.
    >
    > AT SELECTION-SCREEN OUTPUT.
    >
    > NAME = 'p_list'.
    >
    > VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    > VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    > APPEND VALUE TO LIST.
    >
    > VALUE-KEY = '2'.
    > VALUE-TEXT = 'Country'.
    > APPEND VALUE TO LIST.
    >
    > CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    >
    > start-of-selection.
    > select kunnr name1 up to 20 rows from kna1 into table itab.
    > select kunnr land1 up to 20 rows from kna1 into table jtab.
    >
    > case p_list.
    > when '1'.
    > loop at itab.
    > write:/ itab-kunnr,itab-name1.
    > endloop.
    >
    > when '2'.
    > loop at jtab.
    > write:/ jtab-kunnr,jtab-land1.
    > endloop.
    > endcase.
    >
    > <Added code tags>
    >
    > Moderator Message: Please use the "code" tags to format your code snippet.
    >
    > Edited by: Suhas Saha on Nov 17, 2011 11:19 AM
    This surely seems to be a bug to me(if not by design),  did you check for any SAP notes? Perhaps a front end trace can help(Note 407743) !
    -Rajesh.

  • How to handle BP who is both Customer and Vendor during history import?

    Hi Forum,
    This is for importing Financial transactions for Open Sales Orders, Open Sales Invoices, Open Purchase Orders and Open Purchase Invoices and also for importing history for all Closed Sales Orders, Invoices, Purchase Orders and Invoices.
    Our prospect has in their current system Business Partners who are both Customers and Suppliers (Vendors). In SAP Business ONE, BP is unique. It is recommended I believe in situation where BP is both Customer and Vendor, we need to create two BP Ids.
    Question?
    How do we import open and history of invoices in this situation where the same BP is both Customer and Vendor? Any tips would help please.
    Thank you all very much.

    Hi Syed,
    As Gordon and Rahul said, it is painful for you if you import closed transactions.
    Try to compromise your client that to use the old system for last year/old reports.
    Its always good practice to import the Opening balance and even the open documents only.
    If you have partially open items, then import the document for open quantities only.
    Let's say, if you have a sale order with an item of 100 Qty. Among that 100 qty, lets 20 qty has been already delivered then you have to create the sale order in SAP for remaining 80 qty only.
    Regards,
    Bala

  • How can i get sound on BOTH imac and apple tv

    The sound works fine on the apple tv Television but goes off on the iMac
    Video works on both, so How do I get sound on Both when mirroring?

    Go to Settings > Messages > Receive At. Use the same Apple ID. Make sure the phone numbers/email addresses you want to receive messages at are checked.

  • How to display records based on current month and last month???

    i have a query that want to display the data for current month and last month. when i try to view the reports, all the data/key figures is return all in 0.00.
    i modify the variables for this current month and last month but still the results is the same. i could not see the data. any advise on how to modify the variables for this current month and last month? i am thinking my variables is wrong.
    for the current month variable:
    the type of variable is characteristic value, processing by customer exit, reference characteristic is calendar year/month.
    thanks for all who are kind to help me here....

    Hi,
       If you install the variables from BC correctly and they are in active state, you can use them directly use them. check for this month the total values at info cube is ZERO or some value. as you told you are getting ZEROS for your input.and check the data at cube level based on your query design, apply all restrictions, fileters and see do you get any data at cube level and compare with report.

  • How to do IDOC debugging for both inbound and outbound

    Hi
    can somebody please help me on how to debug the idoc both inbound and outbound in SAP PI.
    Regards
    Blue

    Hi,
    Yes, i have checked but did not get any satisfactory answer.
    here is the solution:
    Inbound:
    We19, Give the idoc #,
    click on the inbound functional module and select the radio button in the fore ground
    check the check box call in debug mode, this will enter in the functional module debugging.
    Outbound:
    Check BD73, give the idoc # and execute
    or
    RSNASTED program and set the breakpoint there
    is this correct, i have not tested/ checked yet.
    Regards
    Blue

  • Address labels with BOTH company and name?

    I was hoping with Snow Leopard, that Mail would allow one to print address labels with BOTH the company and the name of the recipient.
    I can only seem to print one or the other... but not both.
    Is is possible to print an address label with both?
    This would be a label with 4 lines... doesn't seem like rocket science to do this? What am I missing?
    I can do this with Pearlabelizer. But I've tried everything in Mail to no avail.
    Even when I print a PDF of a mail list, I can't have both the Company and the Name together. This is very frustrating.
    Thanks for any tips...
    jn

    I see there's a workaround, if you don't have the Company name checked.
    I wonder now if there's any way to uncheck the 'company' box from 450 addresses all at once? Or does one do those sorts of things one at a time?
    Thanks for any tips!
    :0)
    jn

  • How to install Laserjet M1217 for both wireless and network

    How to install an HP Laserjet Pro M1217nfw MFP on an XP system for both network and wireless capabilities?

    Hi,
    Are you talking about a mixture of wired and wireless ? If yes, please check your existing hardware and use the following manual to select one connection type then post back if having any porblem during the setup:
       http://h10032.www1.hp.com/ctg/Manual/c00389927.pdf
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to burn a dvd with both Mac and Windows files

    I have a DVD that has both Mac and Windows formatted files. When the DVD is mounted only Mac formatted files show. I want to burn a DVD copy containing both formatted files. How do I do that? Thanks in advance.

    Correction! It is a CD and there are two partitions with Mac and Windows files.

  • How does metadata get changed by both Lightroom and another application??

    I am frequently getting the message "The metadata for this photo has been changed by both Lightroom and another application. Should Lightroom import settings from disk or overwrite disk settings with those from the catalog?" on images in my catalog. I use only Lightroom to organize, add keywords, do basic adjustments, etc. On the occasions I am taking an image into Photoshop to do further work, it's exported as a TIFF or PSD and the original stays in the LR catalog untouched by anything else I might do to the image.
    I have two choices with this message: Use Lightroom's settings, OR overwrite them from disc. The first few times this scared me, as I had no idea where those changes were coming from and why the disc file had something different than the lightroom catalog. I have all my metadata saved in XMP files. But I took the chance and said overwrite LR settings, and saw nothing change on the sliders or image being displayed. I then tried a few saying 'keep LR settings', and again I saw no visible signs of changes. That leads me to believe that they are NOT changed but LR things they are somehow. But I don't like seeing it, I want it to go away unless there really are changes happening outside of LR (like if I went into Bridge or something...)
    Any ideas why this message shows up? I just discovered about 100 images in a collection of images I sent to stock agency three years ago, and haven't done anything with them outside of LR since.
    Thanks for any help you can give.

    Users have complained for years about spurious metadata-has-changed notifications.  If you're confident that you're not editing the file itself outside of LR, then choosing Overwrite Settings will rewrite the metadata in the file with the catalog metadata and (usually) make the spurious notification go away.
    Unfortunately, LR doesn't tell you which metadata fields have changed, so users are left flying blind.  I believe Rob Cole had a plugin that would tell you metadata differences between the catalog and the disk file, but his Web site has been down for a couple of weeks now.
    ManiacJoe: My guess is that Photoshop is updating some EXIF data fields in the raw file, for example the "edited with software" field. Since Lightroom probably has already set that field, it gives you a warning that something changed.
    Interesting hypothesis.  I just tested that with LR 5.7.1, Photoshop CC 2014, OS X 10.10 and couldn't reproduce the problem.  I exported a TIFF from a cataloged raw file into the same folder as the raw, edited the TIFF and changed some of its metadata in Photoshop, and saved it.  LR didn't report a metadata-has-changed notification.
    In general, I'd be (only moderately) surprised that if you edited x.tif in PS, it would change any metadata in x.cr2 or x.xmp.

Maybe you are looking for

  • Code to set and destroy session variables in Java Server Pages(JSP)

    code to set and destroy session variables in Java Server Pages(JSP) we have use following statement to set session variable session.setAttribute("userClient",id); we have use following statement to destroy session variable session.setAttribute("userC

  • Cable for second monitor.........

    Hi- I am using a 24" Samsung but also have a 15" Samsung that I would like to use. The cable that the 15' has is a 15pin d-sub and I need it to go to the ADC plugin on my G4 Mac. I am having trouble locating a cable to do such a thing. I can find ple

  • Impact of creating org level for PERSA

    Hi, I am currently on a HCM project, and have been requested to make personnel area an org level.  The security currently is working by Personnel area, with their org structure using location on personnel area, and subarea for region.  Because we are

  • Old pages in Safari on iPad

    When i swipe back in Safari i sometimes get old sites not the one i had last. Why is that?

  • Upload to FTP host not working using SFTP

    I've tested and retested the FTP Server using SFTP on Transmit, works perfectly every time and won't work using Muse's Upload to FTP. Any ideas?