CR Enterprise - Custom y-axis labels for line chart

Hi
I have data with a discrete status (STATUS-1...STATUS-5) per day, like
Feb 1: STATUS-1
Feb 2: STATUS-2
Feb 3: STATUS-2
Feb 4: STATUS-1
Feb 30: STATUS-4
Feb 31: STATUS-1
This series I'd like to render in a date axis line chart with the daily status ordinals (1-5) on the y-axis.
Now I wonder how I can label the y-axis ticks with the respective STATUS text instead of the ordinal.
Unfortunately, the option "Total (Y) Axis/Axis/AxisLabels/Display Label" is disabled due to the value's numeric nature.
How can I manually overwrite y-axis labels or map them to custom text?
Thanks. Jens

HI Jens,
Have you tried creating a formula and using that in 'Show Values' section of the chart?
Formula:
"STATUS-" & {Numeric_field}
-Abhilash

Similar Messages

  • How to Axis labels for Line charts in Business Graphics

    Hi
    I am planning to do the Business Graphic example using Line chart.As part of this
    i didn't clearly understand what is the perpose of Series,Points,categorys?
    if i want to set the Labels at X-axis and y axis ,then how to do that?Baiscally i want to put time related data as X-axis label(20min,30min,60 min etc).Please help.
    is there any good example to understand the concept?
    Thanks
    Prasad

    Hi Bachier
    Thanks for your repsonce.I had seen the example you suggested.but there is no answer for my question.How to set the x-Axis,Y-axis Labels.I had done example for "line chart".But i have same problem:
    Hi
    I am trying to do example on "line chart" using Business graphics in my webdynpro application.
    In the Context i created Node "A" under which i created "B".then it has  value attributes xValue,yValue.Then in View i created BG UI element >Series>point-->NumericValue(for xValue) ,NumericaValue(yValue).Now in view init() method i had initialized values to x and y. some output is coming.but i want to know how to set the X-Axis Label,y-Axis Labels.in X-Aix Label i want to mention time in hrs i.e 8.00,8.30AM,9.00AM,9.30AM etc.as part of y-axis labels i want to mention numeric values( .2,.4,.8,2.0 etc). Please tell me how to set this X-Axis,y-Axis labels.at every 30min(8.00Am,8.30AM etc) user enter quality data(i.e .2 etc) then i want to generate chart.Please help in this regard.i will give very good points
    Thanks
    Prasad

  • Problem in editing legend label of line chart

    Hi,
    I am using crystal 2008 and deploying reports in Java appilication.
    I have a report with line chart in group header. I am using formulae for 'Show value' field. So legend shows it as @formula1
    I couldnt change this is design mode, so i went to preview mode and used 'edit axis label' for each of the chart.
    Now i can see proper legend labels in my crystal 2008. But when i deploy the report in java application, chart still shows @formula1 .... any idea on why my changes are not displayed in crystalviewer?
    Thanks

    This is tricky... and somehow you won't find it in manual.
    After the change of Axis Label, right click on Chart Area. You will see new option "Apply Changes to All Charts". Choose this option and voila - You owe me a bottle

  • Vertical axis labels on column chart

    I'm trying to get the x-axis labels oriented vertically on a 3D column chart, so that the labels don't overlap each other. With 2D column charts I can do this via "format>chart>format x-axis" but these options are grayed out with the 3D column chart. Is there any way to get vertical orientation on the axis labels with this chart type???

    It's usually not necessary to make the axis labels vertical to keep them from overlapping in a 3D chart since when you rotate the chart the labels are vertically offset. But you're right, there's no other control for this.
    Jerry

  • X axis labels for custom group names

    I have a report with one group.  That group has a customized group name field, and the group name is a formula.  When I display the group name in the data section of the report, it displays according to the formula.
    I now need to chart two pieces of data - Primary # of Sales and Secondary # of Sales - for that group so I can compare the two # of sales.  If I make a chart for the Primary # of Sales, and go to the group tab in the Chart Expert and specify "on change of Group By Value (my grouping), show the sum of the Primary # of Sales", the chart displays as desired, and I see the custom group name (formula) as the X axis label.
    But if I go to the Advanced Layout on the Data tab of the Chart expert and specify the Sum of Primary # of Sales AND Sum of Secondary # of Sales in the Show Values section, the X axis label no longer shows the custom group name; it shows the group value.
    Any ideas for how to get it to show the custom group name when I chart two fields of data?
    Thanks in advance!

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Adding custom axis titles for Bubble Chart

    How to add custom axis titles (for each group of axis values) as shown in the attached figure to a bubble chart ?
    - Sen

    I'm trying to do essentially the same thing with a LineChart and I think I've got part of it figured out.
    I've subclassed CategoryAxis and overridden reduceLabels to return only certain labels (the "group" labels). Then I create a new axis by adding a LineSeries to the chart's <series> element with the new axis within the LineSeries. Then I have an AxisRenderer in the chart's horizontalAxisRenderers tag that refers to the new axis from within the LineSeries.
    Subclassed axis:
        public class MonthCategoryAxis extends CategoryAxis
            public function MonthCategoryAxis()
                super();
            override public function reduceLabels(intervalStart:AxisLabel, intervalEnd:AxisLabel):AxisLabelSet
                var currentLabels:AxisLabelSet = this.getLabels(0); // Param is ignored by super class
                var newLabels:Array = []; // Labels to keep
                var label:AxisLabel;
                var previousLabel:AxisLabel;
                for (var i:int = 0; i < currentLabels.labels.length; i++)
                    label = currentLabels.labels[i];
                    if (i == 0) // Keep the first label
                        newLabels.push(label);
                    else if (label.value.month != previousLabel.value.month)
                        // Only keep a label if the previous label has a different month
                        newLabels.push(label);
                    previousLabel = label;
                // Return a new AxisLabelSet with just the labels we want
                var newLabelSet:AxisLabelSet = new AxisLabelSet();
                newLabelSet.labels = newLabels;
                return newLabelSet;
    New series to create the subclassed axis in.
                <mx:LineSeries>
                    <mx:horizontalAxis>
                        <charts:MonthCategoryAxis id="MonthAxis" labelFunction="calendarMonthAxisLabelFunction"/>
                    </mx:horizontalAxis>
                </mx:LineSeries>
    The AxisRenderer. canDropLabels must be "true".
                <mx:AxisRenderer axis="{MonthAxis}" canDropLabels="true" showLine="false" tickPlacement="none">
                    <mx:labelRenderer>
                        <mx:Component>
                                <mx:Label width="100%">
                                <mx:Script>
                                    <![CDATA[
                                    override public function set data(axisLabel:Object):void
                                        this.text = outerDocument.getMonthLabel(axisLabel.value);
                                    ]]>
                                </mx:Script>
                                </mx:Label>
                        </mx:Component>
                    </mx:labelRenderer>
                </mx:AxisRenderer>

  • Stacked bar chart with custom x axis labels

    Is there a way to build this simple chart in labview that I did in Excel?  I need to have many x axis labels and there could be from 5 to 100 of them depending on the data set. 
    Attachments:
    Excel.JPG ‏33 KB

    Hi id,
    Thank you for your response. I hope you are doing well.
    There is an example in the LabVIEW Example Finder (Help>>Find Examples..). It is titled, Stacked Bar Graph. You can search for it if you switch tabs in the Example Finder window. This should help you create a stacked bar graph. To help you with your veritcal axis labels, here is a knowledge base link that details the process:
    How Can I Customize the X-Axis Labels On My LabVIEW Graph/Chart So They Appear Vertically?
    http://digital.ni.com/public.nsf/allkb/1F7C1B089E4​5908E86256C8C0051894A?OpenDocument
    Let me know if these examples help.
    Best regards,
    Anna L
    Applications Engineer
    National Instruments

  • Rename cursor axis label for a XY Graph

    Hello,
      I am using Labview 8.2 and would like to relabel the axis of the cursor legend for a XY graph. Presently the cursor lengend contains X (for the X axis) and Y for the (Y axis). I would like to be able to rename the labels of the X and Y axis of the cursor lengend to give the user a more accurate description of the axis labels.
    Regards,
    Kaspar
    Solved!
    Go to Solution.

    The changes that were made changed the names of the cursors, not the name of the X and Y axis. Think of it this way suppose that I have a X Y graph of Frequency (on the X axis) and Amplitude (on the Y axis). I create a cursor on the graph and move it around the waveform to examine the characterictics of the signal. When I move the cursor I would like the see the frequency and amplitude where the cursor is at on the signal. Right now the user has to remember (not to difficult) to figure out that the X axis is frequency and the Y axis is amplitude.
      So I would like to be able to rename the header of the cursor location from X to Frequency and Y to Amplitude.
    Regards,
    Kaspar

  • Custom Range-axis values for JFreechart

    Hi, I'm using Category Line Charts where range axis I need have specific values as labels: 20/100, 20/80, 20/70, etc, but JFreeChart, draws this automatically according to the series sent into dataset. How can I do to customize this? How do I implement or which plot or render propertie I have to refer the code to call any new class if were possible to do it?
    thanks

    http://www.jfree.org/phpBB2/index.php

  • Getting BEx query header data into Xcelsius for line chart Category Labels?

    Hello - Is it possible to get header data from BEx queries into Xcelsius so they can be used for Category Labels in a line chart?
    We have a BEx query that displays 16 weeks of shipment trends by column and text variables are used to display the respective date selection for each of the weeks in the query header but When connecting QaaWs to Xcelsius, the header row does not get displayed.
    When using LiveOffice, the header row seems to come thru with the correct dates for each of the weeks but if you are stacking more than one connection than you will get an extra header row for each connection.
    Are there any tricks to hide a header row in a LiveOffice document?
    Is there anyway to display the header row from QaaWs in Xcelsius?
    Any other work arounds?
    Thanks,
    Derek

    Derek,
    Below are my inputs...
    -->Using QAAWS you will not be able to get the header data, so you will have to maintain header data manually in Xcelsius (Spreadsheet).
    -->Using Live office you will be able to get the header data, and if you are using multiple live office connections, then you need to use cell reference formulas and format the spreadsheet (Xcelsius) as you require.
    -Anil

  • How to edit axis labels in CR charts for crosstab report?

    I have a crosstab report created from tha table where column names havie sort order attached to it as 01_Jul FY10, 02_AugFY10 etc and I am able to remove it  in format field dialog box using dispaly string formula editor. So I am to display columns in specified order. but when I create chart , axis labels display column name with sort order. Is there a way I can remove sort order from column names while displaye in the chart and the legend entry box.
    Help on it is highly appreciated.
    Fizza

    Carl answered this one already

  • Colours for Line Chart

    I am trying to create comparative line charts for yearly data over at least a decade (i.e. at least 10 individual lines on one chart).
    Any lines over six don't print. The unprinted lines have a colour allocated against them in the associated table, but not in the chart legend - the labels do appear in the legend.
    I have been trying to manipulate the Chart Colours… (which does appear to be restricted to six) without any success.
    (P.S. For any American readers - my spelling corrector is automatically inserting the 'u' in colours.)

    Graham & Heather Harrison wrote:
    I'm not sure I like that saying something can't be done is the correct answer…
    You may dislike it if you wish (we are free) but this will not change the program design.
    However you can have the medal if you tell me how to superpose charts - I can't find that in the Users Guide.
    It was described here many times.
    (1) build the two charts
    (2) strip every titles, legends,… from one of them
    (3) adjust the min and max values if necessary (on both axis)
    (4) select the chart which you strip then from the format bar define its background to none so it will be transparent.
    (5) drag the 'transparent' chart above the 'complete' one.
    If you don't group them, they will remain 'living' charts which will evolve with changes in datas.
    I didn't checked but I assume that grouping them will freeze them.
    If the medal is made of TRUE chocolate, I'm interested.
    It it is made of the brown mixture which is sold as 'chocolate' in the USA, I am not
    Yvan KOENIG (from FRANCE lundi 29 juin 2009 18:04:52)

  • Change the Axis Labels of a Chart

    The Chart-Series are generate through AS (Multiple PlotSeries and 1 LineSeries). I managed to Update the Visuell Areas (in this example to manipulate Vertical Axis (minimum/maximum values to be shown).
    No I have 3 Questions about to manipulate this Chart with AS3:
    I would like to remove nearly all "Ticks" and "Labels" from the Axis. At the End only the min/max and 0-Label-Value on the vertical Axis should be displayed. And on the vertical Axis, I would like only to have the min/max-Label and 100-Value.
    The Chart-Lines (in the Screen above) only 2 Lines should be visible. v-Axis = 100 and x-Axis=0 (just as a Cross over the Chart)
    The Linear Serie (just a Value of a Funktion like x=y*2) should have no Tooltip if you go MouseOver-it. And the Legend of this Serie should not be displayed in the Legend. How can I delete the Legend, and how can I preserve a DataTip over this LineSerie?
    Hopefully you did understand my bad english.
    Thanks for any Tips
    Pawel

    Hi,
    1. IAxis interface have labelFunction (see docs for details and parameters for it). You can check the value to be labeled and return empty string if you don't want to show this value in axis. Axis you get from chart.getAxis(name). But there is not any warranty that always 0 will be shown. You showl implement your own IAxis to show only specific values. (Or search it in internet)
    2. You should remove all these grid lines and create CartasianDataCanvas this lines at 0 and 100 and put it to annotationElements of the chart.
    3. If you don't want to see all data from chart in Legend you should create an array with legend data only from serieses you want to see. Chart has a property legendData from all serieses. You can filter this array or create new array with legendData from serieses you want to see. And set this array as a dataProvider to Legend.
    Hope, this helpful.

  • Manipulating custom measure variable inside a line chart

    Hie Guys,
    I have a line chart in my report that contains 2 custom measure variables & 1 measure object from the Universe in the Y axis and one dimension object - "Month" in the X axis.
    Formula for the custom measure variables are - 
    If [Month] = "Jan" Then 45
    ElseIf [Month] = "Feb" Then 65
    ElseIf [Month] = "Mar" Then 88
    And so on..........
    Now, I have an input control in the report for "Project Type" (Development & Improvement)
    I want the chart to behave as described  below.
    If (Project Type = "Development") Then only display measure object 1 in the chart
    If (Project Type = "Improvement") Then only display measure object 2 in the chart.
    Right now, the input controls are displaying all measure objects in the chart when I click on them.
    Is there a way I can get the above mentioned functionality in my report? I am using Business Objects 4.0  SP6.
    Could anyone please help me solve the problem? Thanks.

    Hi,
    Add Two Line Charts in Report one with [Measure Object 1]
    & another with [Measure Object 2] .
    Now Create Variable for User Selection .
    Selection = ReportFilter([Project Type])
    Now in Hide When Property of chart (Right Click on Chart --> Format Chart )

  • Help! extremely small labels in Line Chart

    Hi all,
    I met a problem that i've been working on for a long time.
    If the SQL returned too many rows (e.g. 200+) to generate the Line Chart, the X/Y axis Labels would be too small to be recognised.
    I tried whatever i can imagine, like generating much fewer labels in the PL/SQL and using a font-size 30+...
    So far, so bad.
    Any suggestion???
    Thanks you so much!!!!

    Hi,
    Actually, there are many possible causes for this issue. Could you please tell me how the category labels come from? In other words, why are they all
    the same? I would like to suggest you post some sample data and your chart settings here. I have created a report with chart which has duplicate horizontal axis labels. To achieve your purpose, I hide all horizontal axis labels, and then use horizontal axis
    title instead of horizontal axis labels. I have uploaded my report as an example:
    With duplicate horizontal axis labels:
    http://cid-854fa6d2b7d88cc7.office.live.com/self.aspx/Work/Old.rdl
    No duplicate horizontal axis labels:
    http://cid-854fa6d2b7d88cc7.office.live.com/self.aspx/Work/New.rdl
    If there is anything unclear, please feel free to ask.
    Thanks,
    Albert Ye

Maybe you are looking for

  • Is there a way to bypass the form Validation

    I'm getting really upset with the Coldfusion built-in form validation for any HTML formfield ending by _date , _required, _time and so on... My application proposes to the users to create some Properties for an object and later on to modify the value

  • Amount and Date Formatting Urgent !!

    Hello Gurus, I want to format Amount in the below manner , I need to put this data in a text file , When I read it from SAP , irrespective of whatever format I need to write the data in the text file in the following format 999999999999.999 if the am

  • Lov iterator refresh issue

    HI friends! I'm using JDeveloper 11g I've got a problem with a lov attribute in my application. I need to implement the following scenario: I have an adf table Licence in my jsf page. One of the table columns includes a lov attribute which values mus

  • CDPOS - Line Item Number

    Hi Table CDPOS gives the changes made onto a SO Line Item. But it has no infomormation on which Line Item Number. Still, the program RVSCD100 gives the Line Item Number for that change. I could not find out from where it picks the Line Item number! C

  • HELP: Copying layers from one file to another to keep structure not possible??!!!

    Hi guys, I have a curious question. Sounds a bit silly and highly disappointed if Illustrator is actually not capable of doing this. Hopefully I have missed something. I have an AI doc that has grown so large that saving it now is a major effort so t