Benchmarking line in the chart

Hi
I have created one VC model for comparitive analysis of feedack of the training program. Based on this i want some benchmark so that i can compare this with others. To do this i want to show some benchmarking line in my chart. How do i do this?
Thanks in advance
Deepdas
Edited by: Deepdas on Nov 6, 2009 4:16 PM

Hi
There is another way also of doing same thing -
1. First select 'Grid Lines' as Horizontal in the chart.
2. Then set value range manual & give min & max values.
3. Adjust interval size so as your 'Benchmark value' will come as one of the intervals.
Earlier what i explained is visible only if there are more than 1 values on category axis for a given field.
Regards
Sandeep

Similar Messages

  • LineChart - Style line in the chart

    Hello,
    I am trying to style the line in a LineChart. I would like to turn off the shadow behind the line, change line color, and change thickness of the line. Is it possible to change it somehow?
    Thanks, Gabor

    Look in caspian.css (you can extract it from jfxrt.jar) and you will find this style. It would be easiest to copy this into your own .css file and then add that as a stylesheet to the Scene.
    .chart-series-line {
        -fx-stroke: #f9d900;
        -fx-stroke-width: 4px;
        -fx-effect: dropshadow( two-pass-box , rgba(0,0,0,0.3) , 8, 0.0 , 0 , 3 );
    }

  • WAD - display only the last value in the chart

    hi...
    I designed a chart in WAD wich displayed a range of values in a line. Now im searching for a possibility to display the value for the points in my chart, but not for all values, only for the last value in the line! And every month the line will extended with new value-points, so it is necassary that the function is dynamic, always for the last point in the chart the value should displayed!?
    thx for some ideas!
    david

    hi @ all... once more information:
    the chart displayed only one keyfigure of a query. for example it display the revenue per month. in jan. = 10, feb. = 15, mar. = 25, apr. = 13, jun. = 23. these values should be displayed in a line in the chart aaaand additional for the last one in the line the valuecaption direct in the chart (f.e.: jun. = 23). not for all "periods-points"only for the last one.
    in jul. = 25 the chart changed and only for july the value-caption should be displayed. Is it possible?
    Regards,
    David

  • Need help in Line bar combo chart - line is not prominent in dashboard

    Hi All,
    I face an issue where the line in a line bar combo chart is not prominent in Dashbords.
    lets say i have 5 reports (all of them are line bar combo charts) in a dashboard. The lines in graph are not prominent or not displayed in usual thickness. But this scenario does not happen always. if i scroll down or up the browser(here i am using IE8) some of the reports displays line in the charts and some does not display the line. when i click on the report then the line will be displayed.
    please suggest whether this is a browser issue ror something to deal with OBIEE itself.
    Thanks in advance.

    Hi,
    It's a bug in obiee11g. kindly download the patch file from My Oracle Support and delpoye it
    OBIEE 11g: Line Bar Combo , With Stacked Chart , The Bar Width Gets Affected [ID 1369493.1]
    Patch 12947990: BAR CHANGES WIDTH WHEN CHART CHANGED FROM DEFAULT LINE-BAR TO STACKED LINE-BAR
    Symptoms
    When the chart type is changed from Standard or Default line-bar to Stacked line-bar chart, the bars are reducing their width.
    Line-bar should keep the width of the previous bars.
    However, when vertical Bar is changed to stacked vertical, the bar width remains the
    same. But when a regular Line-Bar is changed to stacked vertical, the width
    changes (reduces, in this case it becomes half the original width)
    Cause
    For dual Y stacked bar graph, the bar width was half of the regular bar width
    because the series assigned to Y2 was given the half of the space also. This is not needed if the marker type for Y2 is not bar.
    The following bugs have been opened to handle this issue
    Reference Bug:
    Bug 12931660 - line bar combo with stacked chart changes its width
    BUG:12931660 - LINE BAR COMBO WITH STACKED CHART CHANGES ITS WIDTH
    BUG:12947990 - BAR CHANGES WIDTH WHEN CHART CHANGED FROM DEFAULT LINE-BAR TO STACKED LINE-BAR
    Patch 12947990: BAR CHANGES WIDTH WHEN CHART CHANGED FROM DEFAULT LINE-BAR TO STACKED LINE-BAR
    Bug Ref:
    e.x: applying patch file refer the below file
    http://obieeelegant.blogspot.com/2011/11/how-to-apply-patches-using-opatch.html
    Thanks
    Deva

  • Is it possible to display fixed lines in the candlestick chart ?

    Hi,
    I have a nice candlestick flash chart using AnyChart integration kit.
    I would like to display 3 lines in this chart, they are as follow and they return one value each :
    SELECT SEUIL_HAUT FROM SITE_ECHELLE WHERE SITE = :p184_ename
    SELECT SEUIL_BAS FROM SITE_ECHELLE WHERE SITE = :p184_ename
    SELECT SEUIL_ALERTE FROM SITE_ECHELLE WHERE SITE = :p184_ename
    You know these line represents limits.
    I tried to add these values in the request below but nothing would appear. Do you have an idea how I could display these fixed lines ?
    DECLARE
    X VARCHAR2 (4000);
    BEGIN
    x := 'With S1 as (
    SELECT DATE1, round(avg(VALEUR),2) OPEN, NVL(ROUND(MAX(Valeur),2), 0) HIGH,
           NVL(ROUND(MIN(Valeur),2), 0) LOW,
           NVL(ROUND(AVG(Valeur),2), 0) CLOSE
    FROM   EVV_'||:P184_ENAME||'
    WHERE  DATE1 BETWEEN
           TO_DATE('''||:P8_DATE_DEBUT||'000000'', ''DD/MM/YYYYHH24MISS'') AND
           TO_DATE('''||:P8_DATE_FIN||'235959'', ''DD/MM/YYYYHH24MISS'') AND
           CLEF_VAR = (SELECT CLEF_VAR FROM SITE_ECHELLE WHERE
                       SITE = '''||:P184_ENAME||''')
           group by date1)
    Select NULL LINK,
           to_char(n, ''DD/MM/YY HH24:MI''),
          NVL(ROUND(AVG(OPEN),2), 0) OPEN,
           nvl(round(max(HIGH),2), 0) HIGH,
           nvl(round(min(LOW),2), 0) LOW,
           NVL(ROUND(AVG(CLOSE),2), 0) CLOSE
    FROM   (select to_date('''||:P8_DATE_DEBUT||''',''DD/MM/YYYY'') + (level-1)/
    TO_NUMBER('''||:P8_ECHELLE||''') n
    from dual  connect by level <=
      (select (to_date('''||:P8_DATE_FIN||''',''DD/MM/YYYY'')+ 1 - to_date('''||:P8_DATE_DEBUT||''',''DD/MM/YYYY'')) * TO_NUMBER('''||:P8_ECHELLE||''')
    from dual
      )) days
            LEFT JOIN s1 ON days.n = trunc(date1,'''||:P8_TRUNC||''')
    GROUP BY n
    order by n';
    RETURN (X);
    END;Thank you for your kind help.
    Christian

    Hello, Jacky, thanks a lot for your answer.
    This is not exactly what I was thinking about:
    I want that the planners can be informed in the BPS planning layout about about e.g. the date when material is available again.
    There should be a text saying: "Material xyz is not available until Oct 1st, 2008"
    Additionally, the user should have the opportunity to give comments on their planning data.
    Any idea?
    Thanks and best regards
    Gerd

  • CR 9 - Need HELP Setting Line Graph colors in the Chart Expert

    Post Author: desselle
    CA Forum: Charts and Graphs
    Hello,
    I created a Crystal Report (CR) based off an existing Trend Analysis report. I have created a VB6 application that calls the .RPT file I created for the report in CR.  The VB6 app sets the report recordset via code that corresponds to the .TTX file, and the parameters .  The report contains a Line graph that plots five pieces of data.  The report & graph work good.  The Problem: CR determines the color of each line on the graph.  However, I need to set the color for each line to correspond to the colors used on our existing reports.  The users are accustom to a certain color representing a certain set of data on the existing reports.   I have tried everything I can think of and from all documentation I can find, and nothing changes the line colors.   I have tried all of the following:
    1.) From the Chart Expert, Option tab, I click the Format button next to Color and setup conditional color settings per each piece of data.   However, when I run the report these conditional color settings are not reflected on the CR graph.     I am using formula fields (based off database fields in the recordset) to produce the report.  However, I only see the database fields to use in the conditional color formatting screen and not the formula fields.    I thought this would possibly be the cause why the colors wonu2019t change on the CR, but I canu2019t find a way to make the formula fields show up in the list.
    2.)Also, I tried right clicking the individual lines of the graph and change the selected item color, but this didnu2019t change the color either.  I do this in Design mode and Preview mode and neither one changes the color of the lines on the graph.
    3.)I have also looked into the CR object model to see if I can change the line colors of the graph via code and it doesn't look like I am given this flexibility.
    Do you know what I am doing wrong here?   I just want to be able to set the color of each line on the CR graph to the color I want instead of using the default colors.  Are there some Hot Fixes that I need to apply to my copy of CR?
    Thanks

    Post Author: desselle
    CA Forum: Charts and Graphs
    Hello,
    I got the problem fixed w/ the line graph not making the data lines the same color on the report as on the frmPlot graph.   Compare the two screen shots below.   The problem was as follows:  When I created the graph (in the Chart Expert) the field u201CReadingDateu201D was not one of the Report Fields, and all the other fields were Report Fields (Reading, LowAlarm, UpperAlarm, LowerLimit, & UpperLimit). See the 3rd screen shot below.  ReadingDate does show up as a Report Field now but it wasnu2019t at first.   Originally, this field was only available in the Chart Expert as a recordset field.  When I changed this field to be a Report Field, the graph then allowed me to change the data series line colors.   This was not obvious at all.   From the beginning when I setup the graph and passed in the recordset from VB it graphed all of the data series fine.   The colors that the Chart Expert chose for each line just didnu2019t match what was on the frmPlot graph.   Anyway, it is working now.     I can at least say I learned (somethingu2019s to-do and somethingu2019s not to-do) a good bit about Crystal Reports in the process.
    Thanks

  • CR XI - Problem Setting Line Graph colors in the Chart Expert

    Post Author: desselle
    CA Forum: Charts and Graphs
    Hello,
    I created a Crystal Report (CR) of an existing Trend Analysis report. I have created a VB6 application that calls the .RPT file I created for the report in CR.  The VB6 app sets the report recordset via code that corrsponds to the .TTX file, and the parameters .  The report contains a Line graph that plots five pieces of data.  The report & graph work good.  CR determines the color of each line on the graph.  However, I need to set the color for each line to correspond to the colors used on our existing reports.  The users are accustom to a certain color representing a certain set of data on the existing reports.   I have tried everything I can think of and from all documentation I can find, and nothing changes the line colors.   I have tried all of the following:
    1.) From the Chart Expert, Option tab, I click the Format button next to Color and setup conditional color settings per each piece of data.   However, when I run the report these conditional color settings are not reflected on the CR graph.     I am using formula fields (based off database fields in the recordset) to produce the report.  However, I only see the database fields to use in the conditional color formatting screen and not the formula fields.    I thought this would possibly be the cause why the colors wonu2019t change on the CR, but I canu2019t find a way to make the formula fields show up in the list.
    2.)Also, I tried right clicking the individual lines of the graph and change the selected item color, but this didnu2019t change the color either.  I do this in Design mode and Preview mode and neither one changes the color of the lines on the graph.
    3.)I have also looked into the CR object model to see if I can change the line colors of the graph via code and it doesn't look like I am given this flexibility.
    Do you know what I am doing wrong here?   I just want to be able to set the color of each line on the CR graph to the color I want instead of using the default colors.
    Thanks,Steve

    Post Author: desselle
    CA Forum: Charts and Graphs
    Hello,
    I got the problem fixed w/ the line graph not making the data lines the same color on the report as on the frmPlot graph.   Compare the two screen shots below.   The problem was as follows:  When I created the graph (in the Chart Expert) the field u201CReadingDateu201D was not one of the Report Fields, and all the other fields were Report Fields (Reading, LowAlarm, UpperAlarm, LowerLimit, & UpperLimit). See the 3rd screen shot below.  ReadingDate does show up as a Report Field now but it wasnu2019t at first.   Originally, this field was only available in the Chart Expert as a recordset field.  When I changed this field to be a Report Field, the graph then allowed me to change the data series line colors.   This was not obvious at all.   From the beginning when I setup the graph and passed in the recordset from VB it graphed all of the data series fine.   The colors that the Chart Expert chose for each line just didnu2019t match what was on the frmPlot graph.   Anyway, it is working now.     I can at least say I learned (somethingu2019s to-do and somethingu2019s not to-do) a good bit about Crystal Reports in the process.
    Thanks

  • Don't want to displya the connecor line in the Stacked charts in CR2008

    Hi,
    I have a requirement to display one of the measure as a connected line with data makers(Rectangle) for each month on the top of the graph for the future 12 months in the Stacked bar charts graph in Crystal Reports 2008.
    Now the user is asking if there is no data in any one of the months then the connected line should not be displayed in the graph.
    1)  i have tried formatting the conneced line alone by right clicking on the connected line in design mode.but i couldn't arrive at the appropriate solution for this.
    Is there any work around or solution not to dispaly the connected line at all.. i mean only to display the Data markers on the top of the graph and not the connected line between the data makers.       
    urgent solution would help me.
    Regards,
    Nanda Kishore.

    Hi,
    yup.. the base is the stacked bar chart and i can show as many as lines on top of it..currently i have only one.
    So is that mandatory to create a line chart if i want a line on the stacked bars in CR2008.   
    Can u explain me if i have to go with line chart on top of the stacked bars to get the solution for this?
    Regards,
    Nanda Kishore.

  • Is there a way to display the legend for a chart, but not the chart?

    Hi,
    I have a stacked column chart and a line chart on top of each other.   I can't use the legend for the stacked column chart because the data will change from month to month, and the 2 charts will not be aligned.  I copied the stacked column chart to another part of the canvas and want to display only the legend, but the chart is still displaying.  Is there a way to prevent the chart from displaying?    Thanks.

    hi Jim Wojewnik,
    we can show only the legend in a pie chart by dragging the edges to closer.do the following,
    select the pie chart,select the edge of the chart and make it small and u ll find the pie chart shrinking.make it lean such that the pie chart disappear.
    try this work around and let me know.
    regards,
    ravi.

  • Wavy lines in bar charts after converting a Powerpoint to a pdf?

    After converting a Powerpoint file to a pdf, the bar charts have wavy lines.  The one thing I noticed is that the problem appeared when creating the pdf with Notes showing.  If Notes are turned off, then the bars are fine.
    Is there a solution for this?

    Version is Office 2007.
    OS is Windows 7.
    Viewer - I think it is Acrobat 9 Pro.
    When printing, the option to print notes is chosen.  If the option is just slides, the bars in the charts are normal.
    To create a PDF, the Powerpoint file is open --> then go to Print --> in the Print dialog box, change the printer name to Adobe PDF and print.

  • I want to copy and paste a chart from an email into Pages on MAC. I only get the text.  Not the chart.

    I recieved an email that included a chart that I want to put in a document.  When I copy and paste the chart in Pages it only shows the text without the chart.  This shouldnt be too hard but I have no idea why it will not copy this in the format or image that it is.  Thanks.

    This is on OSX 10.9.3 MAC Pro
    Pages version 5.2
    I'm sorry I do not know how to determine the format of the chart.  It was sent to me in the body of an email...it was not an attachment.  Is there a way for me to find that out?
    I actually tried both ways...I copied just the chart & then I copied the whole body of the email that included the chart.  Either way, the chart-lines/box did not paste.  Only the text.
    Thanks Peter!  I'm somewhat new with MAC

  • Draw a Horizontal target line on bar chart

    I am trying to reach out to crystal report gurus for the following problem, I am relatively new with crystal reports and would really appreciate if you could provide a solution or point me in the rite direction.
    I am working on a project which requires to show various charts on an .aspx page. (.net 2.0).  I am using CR10.2.36, the one that comes with VS2005.
    My problem is I need to add a target line on a bar chart, e.g.
    I have (Y)years and (X)Examscores, I need to put a line (target line) on the Exam Scores.
        100%   |
    (X)Score  |
       45%
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _   (this is the target line I need to have)
                   |
            0%  |__________________________
                    2001          2002           2003
    now this target line should move up or down on click of a button or a .net slider control (which would be somewhere on the page).
    So I guess I need to add the target line to the bar chart programmatically after the chart loads.
    I am able to load the chart correctly but I am not able to think of a way to add the target line and there seems to be not a lot of help out there.
    I appreciate your time and help
    Thanks
    rohan

    (X)Score  
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _   (this is the target line I need to have)
                   |
                   |__________________________
                    2001          2002           2003
    just drew the graph again since it was not looking good above

  • Line Time Series Chart not working

    Hi All,
    I have one Line Time Series chart where on the X Axis i have taken one date and on Y axis one Sales Figure.Now on the Measure Lables i have taken on dimension as Customer.
    So the chart will give me something like trend which customer has how much sales figures daywise.
    Now the issue is that it shows the trend for one customer correct and shows the line but if i select second customer the graph doesnt show the line just dot for the second customer.
    Any help in this regard

    Thanks Vinod for the reply.
    Second customer doesnt have data on consecutive days but there is no pattern in that.He has data on 3rd,7th,8th,10th,15th day.
    But for all these days for the second customer dots are coming but not in the case for First Customer.
    Regards

  • How can I show the chart in forms?

    Dear all:
    I want to create a line chart. I use the chart wizard and it is successful to create the chart. But, it can't show the chart when I run the form. How can I show the chart in form6i?
    Besides, I see a document that refer to 'OG.pll'.
    I can't find the OG.pll in form6i. Do I need 'OG.pll' to show the chart when I run the form? Thank you very much!!

    Hi Carlos,
    You can try to create a code node for check which signature to print.
    In global variable declare a variable ie named g_sign type TDOBNAME.
    Then pass this var to name of graphics &g_sign&
    please check and reply.
    regards,

  • 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

Maybe you are looking for

  • Call method http_client- response- get_header_fields for PDF and for TIFF

    Hi, I am using a Function Module.. APAR_EBPP_GET_INVOICE_DETAIL to display the TIFF images on the Biller Direct side. The above function module is used to retrieve the PDF documents from the document repository. In Similar way I am trying to do the T

  • Having Problems Converting Word Doc to PDF and Retaining Links

    My company recently upgraded company wide to Reader 9 (for Windows). My department develops documentation and we currently use Acrobat Professional 8. Recently we have had several issues where we try to convert a Word 2003 or PowerPoint 2003 doc to P

  • How to read manual off line?

    Hi, Is there a way to read the iPhone 4 manual without havint to be connected to the Internet? Can I download it and view it on the iPhone? If so, how? Regards, Eros Nunes

  • Is padding required while posting to SAP

    Hi Is padding really required for a number(ex: if a field has max length is 10, can it have only 3 out of it and left others)  or string(ex: if a field has max length is 10 char, can it have only 4 out of it and left others)while posting as an IDoc t

  • Changing existing Material Group  user defined names  to new mat groups

    Hi Gurus, My client is using conventional Material Groups user defined names for ages in their system. Now they have requested us to workout for switching over to UNSPSC material groups Global Standardization. While carrying out the exerice, they hav