Combination of bar and line in chart(graph) of Crystal Report XI

Hi,
I found the way to combine line and bar in a chart(graph) but I am getting rectangle marker where bar and line are crossed. Our user asked to remove the rectangle marker. Please let me know how to remove the rectangle marker.
Thanks and Regards,
Manjunath N. Jogin

Hi Senthil,
You are right but I am getting marker rectangle where line and bar coincides.
I want to remove the marker. 
User asked following two things:
1. Marker like star, triangle, rectangle ...not required where coincide line and bar.
2. Line should be coincided (marker place) at middle of bar.
Please let me know how to achieve these two things.
Thanks,
Manjunath N. Jogin

Similar Messages

  • Combination stacked bar and line chart

    Post Author: jl07
    CA Forum: WebIntelligence Reporting
    Is there a way to create a combination stacked bar and line chart in Web Intelligence XI R2 reports?
    This can be done in Excel and I'm thinking that it should be possible in WebI reports too.
    Thanks

    Post Author: jsanzone
    CA Forum: WebIntelligence Reporting
    JL07:
    This capability is not currently available in WebI (though it is available in Crystal).  Last fall I submitted this as an enhancement request.  It is being tracked under the following enhancement request:  ADAPT00676609 u2013 for the stacked bar chart, line graph issue.

  • Cfchart yaxis scale is wrong when combining bar and line charts

    Hi, I am trying to combine a bar and line chart ti display data.  Everything looks good except that the yaxis scale is off.  I set the scaleMin to 0 but that doesn't help.  Below is my code, the custom XML style and a screen shot.  My ultimate goal is to get the yaxis to start at 0, not -1,000 as is currently the case.  I have combined this data with each set represented as bar charts and do not have this problem.  It must be the combo of bar and line charts together.  Any assistance is most appreciated.
    <cfchart title = "#variables.ReportName# Seedlings Ordered"
        style = "../SO_R_overall.xml"
        Format = "PNG"
        pieSliceStyle = "solid"
        show3D = "no"
        showBorder = "yes"
        showLegend = "yes"
        tipStyle = "MouseOver"
        chartHeight = "#DefinedChartHeight#"
         chartWidth = "#DefinedChartWidth#"
        font="arial"
        fontsize="12"
        fontBold="yes"
        scaleFrom="0">
        <cfchartseries
            type="bar"
            seriesLabel="Goal"
            query="getDivisionGoalsByDivision"
            valueColumn="divisiongoal" 
            itemColumn = "division"
            dataLabelStyle="Value"
            seriesColor="99CCFF"
            >           
        </cfchartseries>   
        <cfchartseries
            type="line"
            seriesLabel="Ordered"
            query="getQTYordered"
            valueColumn="QTYordered" 
            itemColumn = "division"
            dataLabelStyle="Value"
            seriesColor="green"
            >           
        </cfchartseries>
    </cfchart>
    ***************** Custom Chart Style called *****************
    <?xml version="1.0" encoding="UTF-8"?>
    <frameChart is3D="false">
            <frame xDepth="3" yDepth="3" outline="#333333" lightColor="white"
            leftAxisPlacement="Front" rightAxisPlacement="Front" stripColor="#CCCCCC"/>
            <xAxis scaleMin="0">
                <labelStyle isHideOverlapped="false" orientation="Horizontal"/>
                <titleStyle font="Arial-10-bold" isMultiline="true">Division</titleStyle>
            </xAxis>
            <yAxis scaleMin="0">
                <titleStyle font="Arial-10-bold"/>
                <dateTimeStyle majorUnit="Year" minorUnit="Month"/>
                <labelFormat style="Pattern" pattern="#,##0"/>
            </yAxis>        
            <dataLabels font="Arial-10" foreground="black" autoControl="true"/>
            <legend>
                   <![CDATA[ $(rowLabel)  ]]>   
              </legend>
            <decoration style="RoundShadow"/>
            <popup background="#C8FFFFFF" foreground="#333333"/>
            <paint paint="Plain"/>
            <insets left="5" top="5" right="5" bottom="5"/>
    </frameChart>

    I should have also said that I am using 8.0 Pro.
    I want to have the output similar to an e-book.
    The issue (Sept-October of 19xx)
    Then the individual pages (bookmarked)

  • Charts (bar and line) in a tablix

    Hi, I need to do this:
    As you can see the bar graphic is inside the tablix (this is an excel sample btw), I found
    this tutorial and it really helped me, the problem is the line chart (this
    one was good too), in my report looks like this
    How can I make the lines appear between each marker?

    Hi mnjogin,
    How did you manage to combine bar and line into one graph?
    Pls advice.
    Thanks!

  • How to make the values of a combination graph (bar and line) visible always

    Hi ,
    I am using jdev 11.1.1.6
    i have created a combination graph which has a bar and line.
    The data with respect to bar and graph were only visible when i keep the mouse pointer on it.
    i need to set the values visible always.
    kindly let me know how to make it.
    In pie graph its by default showing the data always.
    regards
    Siva

    Hi Sameh Nassar,
    Thanks for the input, am using the combination graph and i dont have this property added till now.
    i tried adding them manually in source but it didn't work. so I assume that this property is good with pie chart alone.
    please correct me if am wrong.
    This is my combination graph structure.
        <dvt:comboGraph id="comboGraph1"
                          value="#{bindings.testVO1.graphModel}"
                          subType="COMBINATION_VERT_ABS_2Y" shortDesc="Graph 1">
            <dvt:background>
              <dvt:specialEffects/>
            </dvt:background>
            <dvt:graphPlotArea/>
            <dvt:seriesSet markerDisplayed="true">
              <dvt:series lineWidth="0"/>
            </dvt:seriesSet>
            <dvt:o1Axis/>
            <dvt:y1Axis/>
            <dvt:y2Axis/>
            <dvt:legendArea automaticPlacement="AP_NEVER"/>
            <dvt:graphTitle text="Combination graph"/>
            <dvt:o1Title text="x axis"/>
            <dvt:y1Title text="y1 axis"/>
             <dvt:y2Title text="y2 axis"/>
          </dvt:comboGraph>
    regards
    Siva

  • How to apply formula field for a chart object in crystal report XI

    Hi
    how to add formula field for a chartobject, i tried the following code but returns invalid condition field.
    i want to show  different chart in same crystal report viewer with different coursestatus values.
    please suggest where ia m wrong.
                   FormulaField oFormulaField;
                   oFormulaField = new FormulaField();
                   oFormulaField.Name = "Status1";
                   oFormulaField.Text = "{CSP_PROCESS_REPORT.Coursestatus} = 'Mastered'";
                   oFormulaField.Syntax = CrFormulaSyntaxEnum.crFormulaSyntaxCrystal;
                   oFormulaField.Type = CrFieldValueTypeEnum.crFieldValueTypeStringField;
                    boChartObject.ChartDefinition.ConditionFields.Add(oFormulaField);
    regards,
    Padmanaban V

    i missed the following line in my code.
    rcDoc.DataDefController.FormulaFieldController.Add(oFormulaField);
    now it works......
    my next issue is that,
    chart returns True & False captions. but i want to show actual value. how its to be done
    regards,
    Padmanaban V

  • Combine menu bar and navigation bar in a single horizontal space

    I would like to have the navigation bar controls to the right of the menu bar options in the same horizontal space, saving vertical space. This could be done with side-by-side bars or one "compound bar".
    Can I do this? How? Thanks for your help.

    Use the procedure in the following link. It shows how to customize the toolbars, allowing you to drag and drop the items you want onto the menu bar. You can then hide the navigation toolbar - https://support.mozilla.com/en-US/kb/how-do-i-customize-toolbars
    You can, if you prefer, hide the menu bar and it will be replaced with the Firefox button. To do that right-click on a toolbar and click on the "Menu bar" entry to de-select it. Then using the Firefox 4 UI Fixer add-on you can convert the Firefox button into an ordinary button that can be moved like other buttons on the toolbar - https://addons.mozilla.org/firefox/addon/firefox-4-ui-fixer

  • Overlapping Graphs in Crystal Report

    We have a requirement of designing a drilldown for which we have used Group charts in Crystal report. Our requirement is to plot graphs on 2 different summary fields on the same level i.e we require that on change of Zone, graph should be shown for Average of MTBF and MTTR values in that zone. We are using Crystal Report 2008. There is a limitation in crystal that only one summary field can be shown in a single group chart, so we hade created 2 different charts for MTBF and MTTR and overlapped one on the other and made the graph at front as transperent. MTBF is a bar chart and MMTR is a line chart.
    It works fine when we do a preview in crystal report, the top graph is transperent and we can see both the graphs.
    But when we are viewing the graph through Infoview, the top graph is no more transperent and we cannot view the 2nd graph that is at bottom.
    Can anyone help in solving the problem or is their any workaround to display 2 summary fields in one graph in group chart.
    Appriciate any immediate help, we are in a critical stage and need to solve the problem ASAP.
    Thanks in advance
    Suchi...

    Thanks for the promt reply.
    We are not exporting the report, We are directly vieweing it in info view.
    I have very little idea about infoview. Can you please let us know how we can change the setting for infoview and who can do this. We just have access to Crystal report and the Business View manager to create and use the prompt group and save our rpt file so that we can view it through infoview.

  • Problem viewing graph in Crystal reports using VB6

    I have a report created in Crystal RDC Version 9 and it has a pie chart. The chart comes out fine in
    Crystal but when I view it using Report-viewer OCX embedded in a VB6 application there are blank spaces
    where the graph ought to be. Database used is SQL Server.
    Does anyone know how to get past this problem?
    Are there any specific dll files I need to download to be able to view the graphs ?

    Post moved to the Legacy SDKs - SAP Crystal Reports forum.
    First a sort of a 'preamble" / FYI, then an attempt at some help
    CR 9, being out of support for close to 10 years, it will be tough to get any help on this. My best suggestion would be to upgrade to CR 2008 and .NET (2005 or 2008) and use the CR SDK for .NET. Or use VS 2010 with Crystal Reports for Visual Studio 2010. E.g.; unfortunately, time to move to more recent builds of CR and development language.
    BTW., the SDK you are using in CR 9 has been retired in CR XI R2 (11.5) which has been out of support since June 2009. E.g.; if this turns out to be a bug of some sort, no fixes...
    The help (finally)
    You say the following which is a bit confusing:
    Crystal RDC Version 9 and it has a pie chart. The chart comes out fine in
    Crystal but when I view it using Report-viewer OCX embedded
    Not sure what you mean by "Report-viewer OCX embedded". The RDC SDK consists of essentially two files; craxdrt.dll and crviewer.dll. Craxdrt.dll is the engine, crviewer.dll is the viewer. Those should really be the only two CR references in your project. Assuming that this is the case, is the behavior you are describing on your development computer, or after you deploy the CR runtime? How did you deploy the CR runtime? Does the app work as expected anywhere?
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Report and Field Explorer dont work in Crystal Reports 2008

    Hi
    I am using the following versions of Crystal Reports:
    Crystal Reports 2008  (Service Pack 1)
    CR Developer
    Version 12.1.0.892
    Product Type: Full
    Target environment: .NET 3.5 windows forms and asp.net application
    Since a couple of days, i can no longer access the field explorer nor the report exlorer. Anything else seems to be working fine. I first thought these windows were somewhere hidden behind another window but as much as i searched, i didnt succed in finding them :-(.  Our product has a valid licence and is registered, by the way.
    My question is now, what do i have to do to get my field/report explorer again. Maybe, installing the latest service pack had an influence, but i cannot tell for sure.
    Any help is appreciated
    Thanks in advance

    Please note that this forum is dedicated to topics related to custom application development or deployment with Crystal Reports in .Net. This includes full versions of Crystal Reports as well as those versions of Crystal Reports bundled with Microsoft Visual Studio .Net.
    Your query appears to concern the CR designer. As such, please post your query to the Crystal Reports Design Forum:
    SAP Crystal Reports
    Ludek

  • How to draw line in Text Box of crystal report

    Dear all expert,
    i have develop a crystal report, i need to underline the field heading. what i had done is, CTRL+U and edit my heading text. But it only underline what i type, the rest of the blank area of the field heading was not underline. how can i overcome this issues?
    Thank You.

    Hi,
    Instead of 'ctrl + u' the field, right click your text object, format text -> border -> enable the bottom with single
    Thx,
    Hao

  • Danish character and Symbol are not displaying in crystal report 2008

    I am developing a crystal report. The report displays data from database. The data is entered into database from a asp.net web form where a JavaScript Editor is used. Mainly data is saved in Danish character and also there are some emotion symbol. The web page is showing these data reading from database perfectly. But the Crystal Report is missing some Danish character as well as emotion symbol in some cases. The screen print both for web page and crystal report is shown bellow.  The database field DataType is “CLOB” and using Crystal Report 2008.
    Can anyone help me to get rid of this situation.
    Thanks to you all.

    Please have a look at the resolution in this thread:
    CR 2008 - Oracle 11g - CLOB fields are blank when using command
    -Abhilash

  • Combined bar and line graph: need some advice

    Hi,
    I'm builing a small app for a customer. The basic functionality is showing the bar chart and the line (see the figure attached), and now I want to show
    the area above the line in another color. This is the cost saving for the customer. Can I do this? And how would you suggest me to achieve this!
    Can I also show the big dot as seen in the figure?
    Thanks!

    _Faust wrote:
    Hi,
    I'm builing a small app for a customer. The basic functionality is showing the bar chart and the line (see the figure attached), and now I want to show
    the area above the line in another color. This is the cost saving for the customer. Can I do this? And how would you suggest me to achieve this!
    Can I also show the big dot as seen in the figure?
    Thanks!
    Although I believe that graph would be possible by banging on the graphs hard enough, but it would pretty easy to render that image using a picture control since rectangles, lines, text, and circles are supported.
    The link I included above will take you to a thread devoted to Picture related threads.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to use a checkbox to toggle visibility of a Bar or Line on a Graph

    I came across a tutorial but can't seem to get it working properly.  Would someone be able to better explain how you can use checkboxes on/off to toggle the visibility of a line or bar on a graph?  I know you can do this directly within the graph's legend, but my legend is so large that it doesnt fit on my screen, so I need to take an alternative route.
    This is the tutorial i'm referencing:
    http://analysis-reporting.blogspot.com/2009/06/formatting-tricks-2.html
    Here is a screenshot of my dashboard. I want to code the checkbox to turn visibility on/off of the blue bar, the blue bar gets its values from Row 3 Colums B to F:
    http://img266.imageshack.us/img266/3838/testah.jpg
    Any help would be greatly appreciated!

    It appears that you're missing the logic for the check box.  There needs to be a cell whose value changes based on the check box's status (1 for checked, 0 for unchecked).  Do this choosing 'destination' in the check box's options and setting it to a cell in your spreadsheet.  The default values are 1 for checked, 0 for unchecked.  Then, you should have the values for your blue line in a table, but the actual line graph should be driven from an identical table that gets its information from the first table (confusing?).  The logic in the 2nd table should read:   =IF(Control Cell = 1, Actual Value, "")
    What this does is if the check box is checked, then the 2nd table will read the same as the first, and your values will appear.  However if the check box is unchecked, the 2nd table will have blank values ( "" ) and thus not register.
    Here are some images to help:
    This is the dashboard I created, notice the values are mapped to one area but the chart is driven by the other.
    http://img191.imageshack.us/i/basicr.png/
    This screen shows that the chart is driven from the 2nd set of data.
    http://img821.imageshack.us/i/chartdata.png/
    This screen shows the logic behind the 2nd table, the one that actually drives the chart.
    http://img836.imageshack.us/i/maplogica.png/
    This screen shows the check values for the checkbox.  Note that the destination for the first check box is cell B3.
    http://img683.imageshack.us/i/checkbox.png/
    This is the dashboard in action:
    http://img511.imageshack.us/i/inaction.png/
    Here is the XLF file so you can look at the logic and stuff.
    http://www.filedropper.com/demo1_2
    --Hope this helps.

  • Combining 2 readings into a waveform chart/graph displaying continuous readings of data from different sources

    Hi,
    In the file
    (Serial Read and Write to .tdms & Compare on Graph – test.vi) I am trying
    to integrate the following two waveforms into a single waveform: Realtime
    reading and Waveform chart (open vi to see). Both of them display speed vs time
    but from different outputs. One comes from an excel file (Teraterm – Results.xlsx
    – sheet 4, (column 3:row 4) to (column 3:row 1878)) and the other comes from
    the Serial input which is in Hex format and is split to get the various readings
    of speed, voltage etc. I have already wired speed to a variety of waveform
    outputs, but all result in broken wires.
    The readings are taken in by the program
    and but I am unable to wire the two readings together into one graph. 
    Please do let me know as to how can I make this work.
    Thanks in Advance.
    Best Regards,
    Akhil
    Kumar Meesala (Mr.)
    Year
    4 | Undergrad | Mechanical Engineering
    National
    University of Singapore
    Email:
    [email protected]
    Mobile:
    (+65) 9326 7069
    Solved!
    Go to Solution.
    Attachments:
    Serial Read and Write to .tdms & Compare on Graph - test.vi ‏58 KB
    Teraterm - Results.xlsx ‏593 KB

    Dear GerdW,
    I'm sorry again about the misspelling your nick. 
    I tried connecting a waveform chart to the two terminals (speed from the DAQ and speed from the excel file) but I was unable to get the connection right. I understand that charts are used for readings which are equally spaced out, whereas XY graphs are used when the readings are not be spaced out uniformly. But I am unable to wire the connections correctly.
    Actually the DAQ device continuously sends out data through the serial port. So I would not run out of data . Are you referring to the data coming from the DAQ device or the excel file? I actually have not thought of what would happen when the excel file would run out of values I am just hoping for the software to run till then for now
    I have cleared up the wires as well Thanks for your help.
    Best Regards,
    Akhil Kumar Meesala (Mr.)
    Year 4 | Undergrad | Mechanical Engineering
    National University
    of Singapore
    Email: [email protected]
    Mobile: (+65) 9326 7069
    Attachments:
    Get Excel Values.vi ‏25 KB
    read_excel_values.llb ‏201 KB
    Serial Read and Write to .tdms & Compare on Graph - test.vi ‏79 KB

Maybe you are looking for

  • Unable to start recording - occasional issue

    We're having an intermittent issue that so far we have been unable to narrow down the exact cause so that we can fix the issue. Once in a while, when someone tries to start recording a call that an avgent is on, they will get a message stating "Unabl

  • HDR Toning Auto Batch Process

    Hi, first time poster here...just recently got into timelapse photography and have been batch processing away to my hearts content. I have one scene that looks unbelievable with the "surrealistic" HDR toning preset. However, I record my action and se

  • Reading comma delimited files

    Hi, What are the FMs that I can use to read comma delimited files. Also, will it be able to run in the background? Thanks, RT

  • How do i open firefox browser in full screen mode all time on Ubuntu

    I am using Ubuntu OS. I want firefox to open in full screen mode when ever i open it. I don't want to press F11 every time. When ever i open it should automatically go to full screen mode. How can i achieve it?

  • Forwarding with request

    In my JSP, I need to post to the same page, and do some small validation on one of the parameters and then display errors as necessary. If that one validation passes (in this case, if the entry exists in the database) I need to pass all the parameter