Custom graph labels

My Y scale is 1,2,3,4,5.... etc
I want to change the label to first, second etc, some kind of custom label - is it possible ?
Thanks,

Hi,
I do not think it is possible to achieve this. Graph Y-axis is a "data" axis, which means only numeric values can be shown. I don't think that "string representations" are allowed on the Y-axis.
What you could do is - graph allows upto 3 reference lines. You could create these reference lines, and in the Graph Legend, write "First", "Second" and "Third" for these lines.
See the FAQ for how to create reference lines.
Navneet.

Similar Messages

  • Custom Axis Labeling

    Is there an easy way of custom axis labeling? I saw a LabVIEW application that was labeling frequency on a logarithmic scale like:
    10Hz, 100Hz, 1kHz, 10kHz, 100kHz, 1MHz, 10MHz
    instead of:
    10, 100, 1000, 10000, 100000, 1000000, 10000000
    Can this be done with the .NET version?
    Thanks in advance!
    Derek

    It sounds like you're looking for engineering formatting with SI units. There is no direct support for this in the Measurement Studio 7.0 version of the graph, but you could get the desired appearance in the axis by setting the axis.MajorDivisions.LabelVisible, axis.MajorDivisions.TickVisible, and axis.MinorDivisions.TickVisible properties to false, then adding custom divisions to the axis.CustomDivisions collection with the appropriate values and labels. This could be done at design-time, but here's some sample code that demonstrates how to do this at run-time:
    class MyForm : Form
    private NationalInstruments.UI.WindowsForms.WaveformGraph waveformGraph1;
    private NationalInstruments.UI.XAxis xAxis1;
    private NationalInstruments.UI.YAxis y
    Axis1;
    private NationalInstruments.UI.WaveformPlot waveformPlot1;
    protected override void OnLoad(EventArgs e)
    base.OnLoad(e);
    xAxis1.MajorDivisions.LabelVisible = false;
    xAxis1.MajorDivisions.TickVisible = false;
    xAxis1.MinorDivisions.TickVisible = false;
    xAxis1.Range = new Range(10, 10000000);
    xAxis1.ScaleType = ScaleType.Logarithmic;
    xAxis1.CustomDivisions.Add(new AxisCustomDivision(10, "10Hz"));
    xAxis1.CustomDivisions.Add(new AxisCustomDivision(100, "100Hz"));
    xAxis1.CustomDivisions.Add(new AxisCustomDivision(1000, "1kHz"));
    xAxis1.CustomDivisions.Add(new AxisCustomDivision(10000, "10kHz"));
    xAxis1.CustomDivisions.Add(new AxisCustomDivision(100000, "100kHz"));
    xAxis1.CustomDivisions.Add(new AxisCustomDivision(1000000, "1MHz"));
    xAxis1.CustomDivisions.Add(new AxisCustomDivision(10000000, "10MHz"));
    // Axis should now appe
    ar as specified once the form loads.
    - Elton

  • Unable to create custom phone labels for new contacts since the upgrade

    I have a AT&T iphone 4 version 4.3.1 and since the last couple of recent upgrades I have been unable to create custom phone labels for any new contacts because the lower label options are gone. This is only a problem with new contacts. My existing contacts with custom labels are still there and if I edit those contacts the table that has create custom labels is also still there, but not for new contacts. Has anyone else noticed this problem.

    If you read the error above about the hash and manifest, you will se this is a RB Setup error and not a CM12 error. You would be better to post your question in the SQL forum or better yet to use BIDS instead.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Remove custom attribute labels

    Hi.
    Does anybody know how remove the custom attribute labels on a page.
    Thanks
    Portal version 9.0.2.6.18 and 9.0.4.0 (10g)

    Try below:
    http://www.harbar.net/archive/2012/07/23/sp13adi.aspx
    http://social.technet.microsoft.com/Forums/office/en-US/d183d133-7fdd-4053-a2ef-dd09b892bf33/error-when-i-get-the-custom-property-an-administrator-must-create-this-property-in-the-profile?forum=sharepointdevelopmentprevious
     This error indicated that the property is not exist in the UserProfile properties. I think you need first to check out the "ZipCode" has been created in your default user profile.
    Create custom profile property:
    http://technet.microsoft.com/en-us/library/cc262327.aspx#create
    In code, it is a good practice to make sure the specific property whether it exists or not.
    SPSite site = new SPSite(SPApplicationRootUrl);
    SPServiceContext serviceContext = SPServiceContext.GetContext(site);
    UserProfileConfigManager profileConfigManager = new UserProfileConfigManager(serviceContext);
    ProfilePropertyManager profilePropertyManager = profileConfigManager.ProfilePropertyManager;
    CorePropertyManager corePropertyManager = profilePropertyManager.GetCoreProperties();
    CoreProperty coreProperty = corePropertyManager.GetPropertyByName("ZipCode");
    if (coreProperty != null)
    Also you can try to create your custom property in code behind:
    http://www.sharemuch.com/2010/03/30/how-to-create-custom-sharepoint-2010-user-profile-properties-programatically/
    Hope this can help. 
    If this helped you resolve your issue, please mark it Answered

  • Displaying custom graph in ALV report

    Hi
    Can you tell me how to display a custom graph for a column in a alv report.
    That is adding a seperate button in the report and display a graph for a column when the button is clicked.
    If 'Graph_2d' function module is used can anybody tell how to pass values to the function module and display the graph using the function module.
    Thanks & regards
    Saravanakumar

    Hi,
      check out the standard program GRDEMO_D for more understanding of teh usage of FM GRAPH_2D
    regards,
    theja

  • Address Book: edit custom field labels

    Is there a way to edit/delete custom field labels one created earlier. Where are the entries of custom defined field labels saved?
    Thank you for any feedback

    Thank you for your replies,
    I understand that deselecting the custom label will make it disappear from the card but not from the list which is somewhere kept (on my iPhone I can see this list when applying a custom label). Also, when trying to re-use a custom label (on Address Book) there seems to be no option for choosing the ones used already.
    Therefor I cannot edit a custom label rather than add a new one (even if it is the same); that makes the list on my iphone from which I can select a custom label every time larger as unused ones do not disappear - I am correct?

  • How to alter XY graph label according to property node?

    I have tried to alter the XY graph label (title) programmatically by making a property node of the XY graph and going to label/text. Then I created a constant to rename the graph, ran the VI but it refused to rename the graph. I have consulted the manual and have searched the forums trying to find an answer. All of the other properties seem alterable, the font of the title, color, etc. but it will not rename the title with the text. Does it have something to do with the owned labels and free labels? If so, is there a way to get around this so I can enter the title through a property node? I am using version 6.1 and would appreciate any help that can be provided. My complements to the forum surfers who ans
    wer labview questions, most are extremely useful and have accelerated my labview learning greatly.
    Thanks,
    CYung

    The help for label>>text property, states that it is not available when the VI is running.
    If the text string is a free label or a caption, this property is settable when the VI is running and is available in the run-time engine. However, if this text string is an owned label, this property is not settable when the VI is running and is not available in the run-time engine.
    Attached is an example how to chnage the title/caption of the graph.
    Zvezdana S.
    National Instruments
    Attachments:
    Graph_Name.vi ‏20 KB

  • How to manage Customer Specific Labelling in SAP?

    Hi there - hope you can help.
    I am looking for some advice on managing Customer specific labelling in SAP.
    Details:
    Each product we sell gets labelled.
    The labels are material and customer specific.
    We currently manage labels (1/ Label Codes and 2/ Label Stock) in an excel spreadsheet - but I am hoping to incorporate it into SAP.
    Looking at the CMIR, I can list the label code in the Customer Description field or in the Search Term field (customer material is already used) - but this doesn't feel correct and would only solve part of the issue.
    Other companies may have a similar requirement - so my question is, how can I manage the customer / material specific labelling in SAP (both codes
    and stock)?
    Many thanks
    Mada

    If EHS is integrated at your clients' place, then I think, you can achieve this requirement as per the below documentation
    Customer-Specific Label - Product Safety (EHS-SAF) - SAP Library
    G. Lakshmipathi

  • Lightroom 5.7. How to create custom color labels.

    I would like to create custom color labels. I have created names for five colors, but the "custom" color (white) does not appear to be customisable
    Any ideas? Ideally I would like two more color labels.

    There are two versions of LR, a cloud-licensed version and a serial-number-licensed version.
    It sounds like you’ve installed the cloud one which Adobe makes very easy to do, hoping you’ll signup for the cloud.
    Assuming you have a serial-number from your purchase, you should uninstall the cloud-licensed LR trial, and then install the serial-number-licensed version from the Adobe Updates page and input the serial number:
    http://www.adobe.com/downloads/updates

  • Custom Graph Size Limitation?

    I am working on trying to create a graph in OAF. I am able to get the graph to generate - I set the size to custom and set a height of 433 and width to 600.
    The users would like to have the size be a lot larger. I tried to double the size and set the height to 866 and width to 1200. When I try to run the app again and generate the graph, I get this error:
    oracle.apps.fnd.framework.OAException: Invalid values specified: Custom Graph width= 1200, Custom Graph height= 866
    Is there a limit to the size of graphs which is causing this error?

    Hi Venkata
    Please see notes 563145 and 1168062 for help
    Please also be aware that custom infotypes and the effects of changing structures are the customers responsibility
    Best wishes
    Stuart

  • How to override pie graph label

    Hi,
    I have a dvt pie graph component on my page. I want to programatically set my pie graph label in a java bean.
    For example, in my pie graph, there are 2 values, paid and unpaid. In my bean, I programatically format my paid amount, and I want to set the paid label to be "Paid (<formatted amount paid>)". I want to do the same for Unpaid.
    How to I access and set the label for Paid and Unpaid series in my code? I could not use EL expression to do that as the label field of the <item> component of the graph do not understand EL expression.
    Thank you for your time.
    Any input is much appreciated.

    Hi,
    How are you passing data to the graph? Are you trying to format the labels shown next to each slice of the pie, or the tooltips (shown when you mouse over the slice)?
    You can use the dvt:sliceLabel tag to format your pie labels.
    For example:
    <dvt:sliceLabel textType="LD_TEXT">
    <dvt:numberFormat decimalDigit="0"/>
    </dvt:sliceLabel>
    This will show text in the pie labels, and format the numbers displayed in the tooltip to have no decimal places.
    Valid values for text type are:
    LD_TEXT, LD_VALUE, LD_PERCENT, and LD_TEXT_PERCENT.
    Hope this helps
    Katia

  • With my iphone 6 with ios8 I need a new way to create custom contact labels via Apple or  app

    How can I create custom contact labels on my iphone 6 using ios  8?

    I assume you mean in contacts you want to add a custom label, not print a label as FoxFifth suggested!
    Todo this click edit on the contact, then click the name of the field you wish to rename (there should be a red circle with a minus beside it)
    A list comes up and at the bottom you can click "Add Custom Label" and type in the name.
    Please note this doesn't work with Exchange servers

  • Custom Graph Types

    Dear All,
    I've a requirement to create a "Stacked Vertical Bar Plus Line" chart - something currently unavailable in Answers. I've talked this through with my Oracle consultant, and depending on how badly my client requires such an output, we may attempt to create a custom graph type.
    The basic steps of the modification are laid out by John, at his blog http://obiee101.blogspot.com/2008/01/obiee-adding-customized-graphtype.html
    I'm just wondering if anyone has attempted such an operation- before I dive in head-first? Any suggestions would be most welcome!
    Many thanks,
    A.

    Hi Ally
    I have some experience with it..... :-)
    Do you already have your custom PCXML file?
    HTH
    John
    http://obiee101.blogspot.com

  • Can I save the custom graph format?

    Hi All,
    Can we save the custom graph format?
    -- BIEE11.1.1.5.0
    When using combined line-bar chart. I set the width of line chart to 3px.
    This is thinner than the default setting.
    I found the following section to setup/change for custom graph style formatting;
    can we save the custom graph style formatting as a default?
    Edit Graph View >
    Graph properties > (T)Style > Graph Data
    style and conditional Formatting
    Style Formatting
    Custom Formatted Positions:
    Press +(Add button)
    Thank you in advance,
    Hiro

    It worked with the following changes on the file dvt-graph-skin.xml:
    <Graph>
         <SliceLabel>
         <!-- decimalDigitUsed is false here so that non-percentage pie slices do not pick up this value
                   The DVTChartProcessor sets decimalDigitUsed to true if this is a percentage pie slice -->
         <ViewFormat decimalDigit="2" decimalDigitUsed="false"/>
         </SliceLabel>
         <Title>
              <!-- attributes supported - fontColor="#0", bold="true", italic="true", underline="true" -->
              <GraphFont fontColor="#0" bold="true"/>
         </Title>
         <SeriesItems>
         <Series id="0" color="#ff0000" borderColor="#ff0000" lineWidth="3"/>
         <Series id="1" color="#00ff00" borderColor="#00ff00" lineWidth="1"/>
         </SeriesItems>
    </Graph>

  • Edit Graph label during runtime

    Hi,
    Is it possible to edit the label of the Graph during runtime? I know there is a property node to change the name, but I want to edit it by clicking on it, just like I can change the range of the scale.
    Thanks,
    Ritesh

    How do you have the user resizing the graph?  I have never seen that capability built into the graph before.
    You were talking about the graph label, which to me meant the label that shows above the graph.  But now you are talking about an axis label, which is a different entity altogether.
    An axis label can be programmatically changed, but can't be changed by a user clicking on a graph during run time.  I question why you would want to give a user of your program the ability to do that anyway.  The axis labels should be determined by the programmer since they are directly related to the data that is being displayed on the graph.  Giving the user the ability to edit a graph label could be dangerous as it could give the impression that the graph is displaying some completely different data set than it actually is.

Maybe you are looking for

  • Image size?

    Hi, I have an image that fills a Powerpoint slide. I drag it into Ibooks Author. It shrinks to fit the half of the page. I heard not to do that and resize the image in Photoshop. Is that necessary? If so, what's a good size for an image on like the r

  • Enabling JAAS Authorization in BC4J ,getUserPrincipalName()

    The Jdeveloper Help states the following:- Currently, BC4J does not have an authorization framework. However, if your application uses JAAS for authentication, >>you can implement your own authorization. To pass JAAS user information to your authoriz

  • HT5172 USB hub to use

    Which USB hub to use ?

  • How to switch between two databases

    Hi, I have a requiremet of using two databases for one of my projects. one which have login related data and second database is having the actual client data. my question is " how can i configure single java application to switch from one database to

  • How to add custom CATS DB field in timesheet?

    I am posting this for a co-worker.....he has created a custom CATS DB field and assigned it to the CATS_ADDFI-FIELDx (where "x" is a number for several additional fields). The field however is not displaying on the timesheet. Any info on how to make