Chart Range

I am a new user for Crystal Reports 2008.....I have set up a report and created a chart, however having a problem establishing a range for the chart....also have a problem filtering/sorting the columns in the report....

Hello,
i´ve the same problem with the following circumstances.
In my chart is shown the offer prices in relation to the propertys.
Now i want to show the offer price in a range ( <50.000, 50.000 - 100.000 etc.) and not the price for every property
(about 200 datasets)
I suppose with the right formula in the chart expert ( Order / TopN ) it should be "no problem".
Any ideas?
Thank you and Regards

Similar Messages

  • ActiveX pie chart range limit

    I have a problem with creating a pie chart using ActiveX that seems to be related to the range. When I give it a source of 8 cells (source 1) the pie chart works fine (Right Pie). If I give it 9 cells (source 2) the pie chart data has 9 series instead of the 1 it should have (Wrong Pie). If I go into Excel I can correct it manually. I have been using this sub VI for a while with no problems but always with fewer than 8 cells. 
    I am using Excel 2007 version 12.
    Attachments:
    M-51539-001 Create Pie Chart.vi ‏108 KB
    Right Pie.JPG ‏124 KB
    Wrong Pie.JPG ‏114 KB

    Attached is part of the sub-vi where I am having the problem. I tell Excel which cells to use for the pie chart. If I use "Source 1" (8 cells) the pie chart is created successfully. If I use "Source 2" (14 cells) the pie chart only uses the first cell. I can go to the Excel file and select all 14 cells manually and the pie chart displays correctly. I also tried 9 cells with no luck, it seems that 8 cells are the limit. I am trying to find what is causing the limitation. I have also attached the sub-vi. 
    Attachments:
    Pie chart block diagram.JPG ‏61 KB
    M-51539-001 Create Pie Chart.vi ‏108 KB

  • Column charts + range

    Hi,
        As per my current requirement I want to dispaly a column charts( like rectangular bar) say from range 32-36 .Can any body let me know how that is possible. Any Example/doc please forward
    Regards
    Kalavati Singh
    [email protected]

    Hi ,
            Let me tell  you my requirement clearly. I want to display rectangular bars ( that looks like a column chart) Starting from a range say 32 and ending to a range 36 ( both 32 & 36 on  x-axis) I  donot want to use columnwidthratio .because if i use them it initially shows correctly but when I scroll/zoom the display & range setting is not correct.
    Regards
    Kalavati

  • Drill through in Pie Chart/Range Guage

    Hi
    I enable drill thorugh in my Pie Chart and Range Guage( Dial Guage) in the BAM reports.
    How to change the value format for the drill through fileds. IF we go to the value format the drop down for filed selection just shows the fields used to configure the Guage or pie chart and not the fileds used for drill though
    How can we change the format for the fields used for drill through
    TO reproduce
    Just take some id, process name, exceution time,status( success/failure). The dial guage shows just the execution time average.Now in drill through it has details for id. processname, started/failure. How to change the format for these fields.When u select properties and then go to value format tab and the dropdown for fields will show only execution time not status, processname or id.
    How to change the value format for these fields

    I don't think this is a bug. This happens only for the drill through reports that get created by default for a particular view. Because you are trying to look for formatting options for drill through report from the context of your main report editor, you are finding it as bug. It will be very difficult to provide all such options for DEFAULT drill through report in the context of MAIN report. I think may be we can add a line or two in our documentation to clarify this part, that should be sufficient.

  • FlashBuilder bar chart - data appears only outside chart range

    I'm relatively new to FlashBuilder development and I'm having some issues with a bar chart.  I'm try to create a chart to show the timeline of projects, each with a start and end date.
    (1) The actual bars appear only on the left side of the y-axis. 
    (2) If I hover the mouse over the blank chart area, it shows a tip for the bar that is not visible (see screenshot). 
    (3) The dates on the x-axis are in descending order and should be in ascending order.
    I would appreciate any help with any of these issues.  Thanks!
    Code to display the chart:
        <s:NavigatorContent id="navProjectChart" label="Project Chart">
            <mx:BarChart id="bcProjectChart" dataProvider="{chartData}"  left="2" top="40" width="710" includeIn="List" paddingRight="5" paddingLeft="5" showDataTips="true" type="clustered" height="505">
            <mx:horizontalAxis>
                <mx:DateTimeAxis dataUnits="days" title="Timeline" parseFunction="parseDateStringToDate" />
            </mx:horizontalAxis>
            <mx:verticalAxis>
                <mx:CategoryAxis categoryField="Name" />
            </mx:verticalAxis>
            <mx:series>
                <mx:BarSeries xField="EndDate" minField="StartDate" fill="{sc1}" stroke="{s1}" />
            </mx:series>
        </mx:BarChart>
        </s:NavigatorContent>
        protected function parseDateStringToDate(s:String):Date
            var newDate:Date = DateFormatter.parseDateString(s);
            trace("Input string: "+s+", Parsed Date: "+newDate);
            return newDate;

    Hi,
    Can you please send me a sample application at deeptika(at)adobe(dot)com?
    I used the following app and it seems to be working fine
    <?xml version="1.0"?>
    <!-- Simple example to demonstrate the BubbleChart control. -->
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx">
        <fx:Script>
            <![CDATA[       
                import mx.collections.ArrayCollection;
                import mx.formatters.DateFormatter;
                [Bindable]
                private var chartData:ArrayCollection = new ArrayCollection([
                    {Name: "A1", StartDate: new Date(2011,10,10), EndDate: new Date(2011, 11, 10)},
                    {Name: "A2", StartDate: new Date(2011,7,9), EndDate: new Date(2011, 10, 10)}
                protected function parseDateStringToDate(s:String):Date
                    var newDate:Date = DateFormatter.parseDateString(s);
                    trace("Input string: "+s+", Parsed Date: "+newDate);
                    return newDate;
            ]]>
        </fx:Script>
        <s:NavigatorContent id="navProjectChart" label="Project Chart">
            <mx:BarChart id="bcProjectChart" dataProvider="{chartData}"  left="2" top="40" width="710" 
                         paddingRight="5" paddingLeft="5" showDataTips="true" type="clustered" height="505">
                <mx:horizontalAxis>
                    <mx:DateTimeAxis dataUnits="days" title="Timeline" />
                </mx:horizontalAxis>
                <mx:verticalAxis>
                    <mx:CategoryAxis categoryField="Name" />
                </mx:verticalAxis>
                <mx:series>
                    <mx:BarSeries xField="EndDate" minField="StartDate"  />
                </mx:series>
            </mx:BarChart>
        </s:NavigatorContent>
    </s:Application>
    Thanks,
    Deeptika

  • Chart range selector

    I am trying to design something with a slider bar and a
    linear chart on top. Changing the selection area in the bar should
    change the color of the selected area in the chart. I have been
    able to do that with text instead of linear chart on top of slider
    bar using TextRange class. Could somebody advise, if there is a
    similar class for charts? If you can point to any examples that
    would be even better.

    in combination chart also it works. here is example JS Bin - Collaborative JavaScript Debugging&lt;/title&gt; &lt;link rel=&quot;icon&quot; href=&quot;http://static.jsbin.… but in js view.
    seems to be issue with xml then. you can refer this thread makit CombinationChart in xml and try out accordingly.
    Regards,
    Chandra

  • Adding new data to update multiple series in charts - in one action

    I would like to know how to update a data series range in a chart all at once as can be achieved with Excel by
    manually entering row numbers to expand the data series range or
    by dragging a reference frame in a table to include additional data in the range.
    At present, the only way that I have discovered I can update a series is to manually change the cell reference detail for each series individually. This is achieved by selecting a single line and clicking several times on the Data reference cell in the Inspector Chart option by highlighting the cell reference details and then manually changing the cell reference for each series separately. This is tedious, time consuming and more than a little clumsy! What used to take me a few minutes to update my charts in Excel is taking me tens of minutes in Numbers.

    theguardian wrote:
    I would like to know how to update a data series range in a chart all at once as can be achieved with Excel by
    manually entering row numbers to expand the data series range or
    by dragging a reference frame in a table to include additional data in the range.
    Unless I'm misreading this, similar techniques work in Numbers.
    The original table contained only the sequential labels in column A and the data shown on the upper chart.
    I made two changes, similar to those in your list (but in the opposite order, hence the reversal in my numbering):
    2. Added data to cells B11:B15 (labeled J-N). (The data added is a copy of the first five data from the original series.) Selected the chart, then expanded the data series by dragging the control (small circle) down to include these cell (plus B16) in the charted range. The chart updated to include this data.
    1. Selected B11:B15, then went Table > Add Rows Below (keyboard shortcut: option-down arrow). Numbers added five rows to the table, and updated the chart to include those rows, as shown in the lower version of the chart. Paste the data into these new rows to add it to the chart.
    Although I had selected rows inside the charted range when adding new rows (to keep that "O" label on the x axis and show the 'space' before it), the five rows could as easily have been added to the end of the chart. Select B12:B16, press option-down arrow.
    Regards,
    Barry

  • Chart not displaying data during preview mode

    Hi
    I hope you can help me with the following issue.
    I have created a dashboard in Xcelsius however during preview mode the chart is not showing the data.
    The cells which the chart is looking at are containing formulas to update based on the input of a filter component.
    I have already checked the functions that are allowed by Xcelsius and my formula seems to be in line with the supported Excel function list.
    I am assuming that either Flash can not convert the Excel formula during runtime or I am having some problems with Xcelsius.
    The formula that I am using to to find the categories is the following (which is working in the creation mode).
    =IF(COUNTIF($B$11:$B$1216,INDEX($B$11:$B$1216,MATCH($E$3&$F$3&$G$3,$B$11:$B$1216,0)+L11))>=L11+1,INDEX($F$11:$F$1216,MATCH($E$3&$F$3&$G$3,$B$11:$B$1216,0)+L11),"")
    The logic behind it is that the formula will count how many times the lookup value is in the lookup range and will return them in the cells for the chart range.
    Anyway I would really appreciate any feedback that might help me resolve this issue.
    Thanks,
    Lucas

    Hi Suman,
    I am using the following Xcelsius / MS Office
    Xcelsius engage 5.5.0.0
    Office 2010
    Have send you the Excel document via email.
    Rgds,
    Robin Lucas

  • Link tables and chart in checking register

    So I've watched the tutorials, read the guide and looked online and I still connot do the following, it's about a year and a half of trying.  I have used the checking register to keep track of monthly expenses.  Here's what I want:
    More categories on the pop up menu - I can do this
    Link the smaller categories table to a achart - I can do this
    Link the categories from the pop up menu on the big table to the categories on the small table and then to the chart - Nope
    Anyone?

    Allen? Devin?,
    It's not automatic, but not difficult either.
    Add a new row to the little Account Categories table. Click the Add Row button.
    Typ3 in your new category name and then you'll have this:
    Next Copy the new category name text. Select the Pop-Up cells and go to the Cells Inspector. Click the plus sign to add an entry to the list and Paste your new category into the list.
    Click on the Pie Chart to highlight the Chart range in the Account Categories table. Drag the lower right corner down to include the row of the new category.
    That's it.
    Jerry

  • Powershell Excel Chart: want to plot chart by columns

    I have the following Powershell code to create a chart:
    $range = $wb.ActiveSheet.usedRange
    $range.EntireColumn.AutoFit() | Out-Null
    $chartType = "microsoft.office.interop.excel.xlChartType" -as [type]
    $wb.charts.add() | Out-Null
    $wb.ActiveChart.chartType = $chartType::xlColumnClustered
    $wb.ActiveChart.SetSourceData($range)
    $wb.ActiveChart.HasTitle = $true
    $wb.ActiveChart.ChartTitle.Text = "Chart"
    The code creates the chart but it plots it by rows instead of columns (see
    Office KB ). I can change this in Excel manually but is there a way with Powershell to output the chart in columns by default?

    Hi,
    Perhaps setting xlColumns for the PlotBy property will be helpful:
    http://msdn.microsoft.com/en-us/library/office/microsoft.office.interop.excel.chartclass.plotby%28v=office.14%29.aspx
    Don't retire TechNet! -
    (Don't give up yet - 12,420+ strong and growing)

  • How do I manually update a graph/chart

    I have a chart on my front panel in which the data is continuously being changed.  Each loop cycle (few seconds each) I clear the chart history (property node), update the chart data, and then change the Chart range to the range that it previously had.  However every time I do this I can see (for less then half a second) the clear chart and then some segment of the new data before it shows the correct data range that I want.  Is there a way to delay graph from updating until I signal it to update so I do not see the intermediary garbage data?
    Thanks in advance,
    David

    Look for the Defer Panel updates property node.  Set it to True before you do the other properties and False After.
    But if you have the need to set the range back to a value it was before, it sounds like you might have the axes set for autoscaling. ??  You may want to turn that off.
    Message Edited by Ravens Fan on 12-18-2008 01:08 PM
    Attachments:
    Defer.PNG ‏22 KB

  • ActiveX and Excel Charts

    I am currently using LabVIEW 6.0.2 on a WIN98 Machine with Office97. The problem I seem to have is with a chart. I have a chart template created and saved as an XLT file for Labview to call. I then write 401 points of data to the page that is linked to the chart. The chart basically frequency vs amplitude. Y-axis for Amplitude ans X-axis for Freq. the Amplitude is always -4 to 4 and the frequnecy changes, in one instance it is 5.85-6.425 and the chart x-axis range is 5.80 to 6.50 which is great. but when the frequnecy is changed to 5.85 to 7.10 the chart range if 0 to 8. If I could find a way to programmatically change the range I would but I don't see anything. Right now thw Office tool kit is not an option as I am still trying to get the company I am at to upgrade to LV 7.1. if I remove point of data from the middle the chart range shows the same. as it fills the data I can watch it shift from the left but I am not sure how to fix it..
    Attached is a zip file with the 2 charts I am describing
    Thanks
    Jeff
    Jeff D.
    OS: Win 7 Ultimate
    LabVIEW Version: 2011,2010,2009 installed
    Certified LabVIEW Architect
    Attachments:
    chart.zip ‏42 KB

    Im still confused how you guys are pulling the ref num for the chart out of these nodes??
    Ive tried pretty much every combination of Invoke Node, property node, and used ChartObjects, ChartObject, Chart, Charts.... all I want to do is change the title of my chart.
    I've looked at the VI that was posted above that requires a chart ref num... but how the heck do I get the chart ref num from?
    Is it off the workbook or worksheet?
    GRRRRR, very aggrivated. Im sick of searching through endless heirchies of ActiveX garbage!!!!
    Message Edited by MJBrehm on 08-17-2006 03:01 PM
    Message Edited by MJBrehm on 08-17-2006 03:03 PM
    Attachments:
    ActiveXError GRRRRR.jpg ‏507 KB

  • X and Y Data in scatter plot are different fields but can not be ??

    When making a scatter plot with numbers you can select the X data in the series bar (X Value) then click tick then select the  y data.
    If I do this the initially entered X data becomes the Y data, if you do it vice-versa, the latter entry of  y data becomes the X data.
    I called up apple support for this issue and after explaining the a technical supervisor in their numbers section what a scatter plot was they said they’d put the issue in my file.  Can someone fix this ……. ?
    You need to be able to enter a number of different X, Y series of data where X is one column or a portion of that column and Y is a an identical number of rows to each x value but in a different column. 
    If apple’s wondering why this program’s not professionally used they might what to actually use it before releasing it. 

    Rubin,
    OK, you're using OSX Mavericks 10.9, and Numbers 3.0.1. It would be a good idea to update your profile to show the proper operating system version.
    I think you are saying that you cant' add X-Y pairs to the chart as a new series. Apple has switched the default. Scatter Charts used to default to adding pairs of columns representing new X-Y pairs, but now it defaults to the mode called Share X-Axis values, so it thinks you are adding 2 new sets of Y-values sharing the first column of x-values.
    The switch for this is in the lower left corner of the Numbers window. This control used to be in the upper left of the chart range indicator in the source table, but they moved it. Click on the "Plot Columns as Series" button to reveal the menu. Then un-check Share X Values.
    Jerry

  • Value xl reporter

    anyone can help me,
    I would like to create an  xl reporter report,  particulary i want to create  the graph in registry items on sales items, Bar graph divided  month for month .  how  can i  share the accounting period in months in xl reporter and print Turnover for months ?
    does it exist a similar example report?
    thanks a lot

    Hi Lorenzo,
    This is a fairly simple report for XL Reporter, I think you will find some samples.
    Are you wanting all sales by month (ie from General Ledger), or individual item sales by month (ie from Sales Analysis).
    To select financial periods, use * to select all, or "Currentyear" to select the current financial year, "currentyear-12" will select the previous financial year. currentperiod is the period which is current when the report is run.
    Try using the composer to get the data you need. When you convert it to a definition, you can create a chart using the row and columns the definition is in, but select an extra row or column at the end of the range for your data. This way, when the report generates in expansion rows or columns, the chart range expands with it.

  • Parsing xml that contains special character

    this is my xml file.
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <grid_assessment>
         <chart>
              <range>5</range>
              <sharing_charging>
                   <score>3</score>
                   <label><![CDATA[SHARING &#38; CHARGING POLICIES]]></label>
    this is my java code.
              SAXParser parser = new SAXParser();
              parser.setContentHandler(this);
              parser.setErrorHandler(this);
              try
                   fis = new FileInputStream(xmlFile);
              catch(IOException ioe)
                   System.out.println( ioe.getMessage() );
              InputSource inputSource = new InputSource((InputStream)fis);
              try
                   parser.parse(inputSource);
              catch(SAXException saxe)
                   System.out.println( saxe.getMessage() );
              catch(IOException ioe)
                   System.out.println(ioe.getMessage());
    when i parse the xml file, i got an error message like this.
    org.xml.sax.SAXParseException: The entity name must immediately follow the '&' in the entity reference.Stopping after fatal error: The entity name must immediately follow the '&' in the entity reference.
    is there anybody who knows how to parse the xml file that contais special character?
    i tried "&#38;" instead of "&". but it didn't work...
    please help...
    thanks in advance...

    this is my java code.
              SAXParser parser = new SAXParser();If that is javax.xml.parsers.SAXParser then your code won't compile; i suspect you might be using some non-standard parser?
              parser.setContentHandler(this);
              parser.setErrorHandler(this);These methods are deprecated.
    when i parse the xml file, i got an error message like this.
    org.xml.sax.SAXParseException: The entity name must
    immediately follow the '&' in the entity
    reference.Stopping after fatal error: The entity name
    must immediately follow the '&' in the entity
    reference.I don't; maybe it's your parser. What parser are you using, and what version?
    is there anybody who knows how to parse the xml file
    that contais special character?There is nothing more you need to do; the codeimport javax.xml.parsers.*;
    import org.xml.sax.helpers.DefaultHandler;
    import org.xml.sax.*;
    import java.io.*;
    public class CeasarKim1Parser extends DefaultHandler {
      public static void main (String[] args) {
        try {
          SAXParser parser = SAXParserFactory.newInstance().newSAXParser();
          FileInputStream fis = null;
          fis = new FileInputStream(args[0]);
          InputSource inputSource = new InputSource((InputStream)fis);
          parser.parse(inputSource, new CeasarKim1Parser () );
        } catch(SAXException saxe) {
          saxe.printStackTrace();
        } catch(IOException ioe) {
          ioe.printStackTrace();
        } catch (ParserConfigurationException pce) {
          pce.printStackTrace();
      public void characters(char[] ch, int start, int length) {
        System.out.println(new String(ch, start, length));
    // similar implementations of the other content handler methods
    }which is basically a compilable and non-deprecated version of yours, with the file<?xml version="1.0" encoding="ISO-8859-1" ?>
    <grid_assessment>
      <chart>
        <range>5</range>
        <sharing_charging>
          <score>3</score>
          <label><![CDATA[SHARING & CHARGING POLICIES]]></label>
        </sharing_charging>
      </chart>
    </grid_assessment>does not generate any exceptions and parses the CDATA section correctly. That is using 1.4.1 and the default org.apache.crimson.jaxp.SAXParserImpl parser.
    Pete

Maybe you are looking for

  • The operation cannot be completed because it is in use

    i have a macbook with yosemite running.I also have a wdtv live with a 1tb hdd on it.I could transfer files from my mac to the hdd over wifi with no problem till i upgraded to yosemite.It tells me when i transfer a large file the operation cannot be c

  • Everything correct, but the images are not there

    Ok, with the podcast I do, All Things Gaming throught www.upstatefighting.com, I went throught and added the album art for the cast in the feed that we use.  I checked in the store, and the image shows up.  But when I resubscribe to the podcast, the

  • Average Data from multiple text files

    I am new to labVIEW hence a little help is appreciated: I have a 100 txt files with two columns (tab separated) for X and Y value. I need to average the Y values to generate one single txt file and generate X versus Y graph. So how do I read the data

  • User Preferences on Startup

    I had a request from one of my users and I'm not sure if it can be done. It does not appear to be a preference available via GUI, but I thought I would ask here to see if there was another way. Is it possible to have TNS pre-selected as the default c

  • ICloud Drive questions

    Hi all, I know that this subject has been discussed yet, but I haven't found a definite answer to this question. I have some Pages documents on iCloud: and since yesterday if I try to access them via iCloud.com interface, a message warns me that my d