Top 10 chart and legend problem

Post Author: training2go
CA Forum: Charts and Graphs
Hello,
I am using CR for Visual Studio 2005.I create a top 10 chart with a legend. The chart is in the group header 1b section and I'm using the underlay option so that the chart is to the right of the detail records.
The chart and legend have 2 problems:
1. The chart displays entries that are not in the detail records. The top 2 pie slices are for amounts not in the detail records or in the legend
2. The percents in the legend are not correct.The first 3 entries in the legend are:
$5,879.70 18.1%$5,219.55 16.1%$10,886.79 11.2%I would think that the $10K amount would have the largest percent and the $5879 nbr would have the lower percent.I've looked every place that I can think of to find out what is causing this, but I'm not having any luck.I also tried putting the chart in the group footer section, but the results are the same.I've also noticed this in CR XI. I don't know if I'm doing something wrong or if this is a bug.Any help would be greatly appreciated.Thank you.

Post Author: training2go
CA Forum: Charts and Graphs
I've still been trying to get this to work or at least figure out what I'm doig wrong, but so far I haven't had any luck, so I'm hoping someone can help me.

Similar Messages

  • Marker shapes differ between chart and legend (JRC).

    Post Author: bernander
    CA Forum: JAVA
    I'm using the current JRC (Java Reporting Component) to display a chart on a web page (using CrystalReportViewer).The chart markers are of one shape but many colors. The legend shows MANY DIFFERENT shapes (and many colors).When I display the chart using Crystal designer, but the chart and legend stick to a single shape.Is there a way around this, or is it simply a bug in the current JRC?

    Forgot to mention: lag only applies to displaying JPanel containing graphs. Displaying "welcome" JPanel, which contains only a JLabel, is almost instantaneous.

  • Label and legend problem in grouped month data pie chart for Crystal XI

    Post Author: mikeyplop
    CA Forum: Charts and Graphs
    Hi all, I have a problem with a pie chart I created based upon monthly figures that were grouped.  The data type is DateTime but I have modified the report to show the date as January 2007, February 2007 etc. etc.  This is all fine and appropriate as it is based on a gouping of all the data into months. However, when I chart the same data the labels and legend do not reflect this formatting.  Instead they show up as 01/2007, 02/2007 etc. etc. I have searched the forums, but was unable to find any one else who has had the same problem. Any help would be greatly appreciated. Kind regards, Mikey

    Post Author: training2go
    CA Forum: Charts and Graphs
    I've still been trying to get this to work or at least figure out what I'm doig wrong, but so far I haven't had any luck, so I'm hoping someone can help me.

  • Copy Chart and Legend Together

    Hi,
    Just tinkering with Numbers. Can anyone advise how to copy a chart and its legend to a new app? I am copying a chart in numbers but when I paste it into Mail the chart-legend is not pasted. I have tried using Cmd to select both objects but no joy.
    Appreciate any advice,
    Thanks,
    Mickey

    Question asked and responded several times.
    Here is my own response updated :
    Select the chart and its legend.
    Group the objects.
    Copy the group in a Pages document, export this document as RTF.
    Control click the .rtfd file which will be created.
    Select "Show Package Contents".
    You will see the content of the doc. One file is a PDF containing the chart with its legend.
    Some times ago, I wrote an AppleScript automating the process.
    Go to my iDisk:
    <http://public.me.com/koenigyvan>
    Download
    For_iWork:iWork '09:forNumbers09:savechart.zip
    Expand it,
    double click on "saveChart.applescript"
    Read the given explanations and apply them.
    Yvan KOENIG (VALLAURIS, France) dimanche 25 avril 2010 18:09:31

  • Creating an HTML Form - Fieldset and Legend problem.

    Hello everyone,
    I am trying to build an HTML/CSS form from scratch.
    However, I want to bring the legend within the fieldset rather then the  legend sitting on the fieldset.
    To get this done, I gave the fieldset a top padding and the legend an  absolute position. However the fieldset appeared to have a break as  indicated in the red circle of the below image. How can I close or  prevent this gap/break?
    Here is the complete code.
    <style type="text/css">
    form{
         margin: 0;
         padding: 0;
         font-family: "Century Gothic";
         font-weight: bold;
         font-size: 16px;
    legend span{
         position: absolute;
         top: 30px;
    fieldset{
         background-color: #EAEAEA;
         padding-top: 60px;
    div{
         width: 100%;
         margin: 0 0 5px 0;
         padding: 0;
    label {
         float: left;
         width: 160px;
         margin-right: 16px;
         text-align: right;
         margin-top: 5px;
    .UserFirstNameField, .UserLastNameField, .UserEmailField, .UserPhoneNumberField{
         width: 200px;
         padding: 4px;
         font-family: "Century Gothic";
         font-weight: bold;
         font-size: 16px;
         color: #F90;
         background-image: url(DFormsImages/Form-Fields-Background-Image.png);
         background-repeat: repeat-x;
         background-position: left center;
         border: 1px solid #D5D5D5;
    </style>
    <!--[if lte IE 7]>   
    <style type="text/css" media="all"> 
    label {
         margin-top: 5px;
    </style>   
    <![endif]-->
    </head>
    <body>
    <form id="BasicForm" class="BasicFormTemplate" method="post" action="">
    <fieldset>
    <legend><span>Personal Information</span></legend>
    <div> 
    <label for="UserFirstName">First Name:</label> 
    <input id="FirstNameInput" name="UserFirstName" class="UserFirstNameField" type="text" /> 
    </div>
    <div>
    <label for="UserLastName">Last Name:</label> 
    <input id="LastNameInput" name="LastName" class="UserLastNameField" type="text" /> 
    </div>
    <div>
    <label for="UserEmail">Email:</label> 
    <input id="UserEmailInput" name="UserEmail" class="UserEmailField" type="text" /> 
    </div>
    <div>
    <label for="UserPhoneNumber">Phone Number:</label> 
    <input id="UserPhoneNumberInput" name="UserPhoneNumber" class="UserPhoneNumberField" type="text" />
    </div>
    </fieldset>
    </form>
    </body>
    </html>
    Thanks everyone!
    Patrick

    Murray *ACP* wrote:
    You might find this good essay to be helpful:
    http://tjkdesign.com/articles/how_to_position_the_legend_element.asp
    Good day Murray,
    What I did was give the legend a zero padding.
    legend{ padding: 0; }
    and the gap was removed.
    I tested in IE7, Firefox 3.6.6, Safari 5.0 and Opera  10.60 and it works very well.
    I have not tested it in IE 6.
    However, I also used the method from the article you provided, it also works well and I will also use that as an alternative when needed for another fix.
    Thanks for your valuable help as always.
    Patrick

  • Financial Reporting Charts and Legend in horizontal row

    Hi all,
    In the knowledge browser there is a "how to" enchancement on how to show legend in one horizontal row ([ID 794882.1]).
    In a few words, the solution was to edit the resulting XML file (*.des) as follows:
    A. Search for the string "OTHERPROPERTIES" with no quotes.
    B. Make the following change: OTHERPROPERTIES="LegendLayout=(HORIZONTAL,BOTTOM,,,,)"
    However, now our need is to have charts with decimals which requires to open the *.DES file in a text editor and add the following parameter after OBJECT_WIDTH: OTHERPROPERTIES="LeftFormat=(FLOAT, '%8.1f')"
    My question is how to have both Otherproperties expressions in one chart. I would be grateful if anyone could tell me how to have both Otherproperties in one chart since I don't have a lot of experience in XML.
    Thank you in advance,
    Thanasis

    Hi all,
    The answer was simple... OTHERPROPERTIES="LeftFormat=(FLOAT, '%8.1f');LegendLayout=(HORIZONTAL,BOTTOM,,,,)"

  • Copying Charts and Legends from Numbers

    Is there any way to overlay the legend with the chart when copied from numbers? I am struggling with this. I always do it in office, but have decided to give iWork a try because office is so slow.

    This question was asked and responded several times.
    Searching in the existing threads as it is urged by the 'Help and Terms of Use' ruling these forums would have give you the response:
    It is available in this thread (some others contain quite the same infos)
    http://discussions.apple.com/thread.jspa?messageID=8370895
    Yvan KOENIG (from FRANCE mercredi 7 janvier 2009 19:16:43)

  • Charts and Language problem...

    Hi Everyone,
    I have the following problem.
    I am trying in a COLUMNS_STACKED_3D Chart (or whatever the chart is) name of company and amounts.
    If I write the name of the campanies in english, everything works fine.
    But if I write the name in hebreu, I get an Exception.
    Does someone know why ?
    Thanks a lot.

    Up...

  • Color not consistent for Line Chart and Legend for prev and curryr

    Hi
    I am trying to pull last year and current year data in line chart with different color coding. I have multiple parameters selection on single chart. For some it reflects the color properly and for others it interchanges the color.
    Crystal xI R2..
    Please let me know the solution.
    Thanks

    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

  • Pie Chart and legend symbols

    Hi forum,
    who can help me to customize legend symbols in pie chart?
    Thanks in advanced

    Look at the last lines in caspian.css
    .pie-legend-symbol.chart-pie {
        -fx-background-radius: 8px;
        -fx-padding: 8px;
        -fx-border-color: null;
    }You can provide your own css for pie-legend-symbol.chart-pie to style the symbol how you like.
    If you need more control, do a css lookup after the chart has been shown on the stage:
    Set<Node> items = chart.lookupAll("Label.chart-legend-item");
    int i = 0;
    // these colors came from caspian.css .default-color0..4.chart-pie
    Color[] colors = { Color.web("#f9d900"), Color.web("#a9e200"), Color.web("#22bad9"), Color.web("#0181e2"), Color.web("#2f357f") };
    for (Node item : items) {
      Label label = (Label) item;
      final Rectangle rectangle = new Rectangle(10, 10, colors);
    final Glow niceEffect = new Glow();
    niceEffect.setInput(new Reflection());
    rectangle.setEffect(niceEffect);
    label.setGraphic(rectangle);
    i++;
    Here is a full example: https://gist.github.com/1422628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Pie Chart with Legend

    Hey Experts,
    I have a small issue but cannot seem to find the solution. I have a pie chart with legends which I want to show side by side (horizontally). First pie chart and then legends. My requirement is that when the window is resized, the pie chart should also resize. I am able to show the chart and legends horizontally but when the legends list is long, the pie chart is always aligned in the center vertically. I tried setting all properties such as verticalAlign = "top", verticalCenter = "false", tried putting pie chart and legends in a separate VBox but nothing seems to work. Below is the code snippet.
    I believe others would have faced this problem. Can someone help?
    <mx:HBox width="100%" height="100%" verticalAlign="top" verticalCenter="false">
         <mx:VBox width="100%" verticalAlign="top" verticalCenter="false">
              <mx:PieChart id="pieChart" width="100%" height="100%" showDataTips="true" minWidth="200" minHeight="200" verticalCenter="false"/>
         </mx:VBox>
         <mx:VBox width="100%" verticalAlign="top" verticalCenter="false">
              <mx:Legend width="100%" height="100%" dataProvider="{pieChart}"/>
         </mx:VBox>
    </mx:HBox>

    Hi Dajji,
    Here is the code which resolves the problem...
    Note: In the code below I have removed the percentage width and height for PieChart.....that resolves the problem.....but the thing here is as you resize
    your browser window the piechart width and height will not change accordingly...? Do you need PieChart to change its dimensions as your browser window
    resizes...???
    However if you specify width="100%" and height="100%" for PieChart you never gonna acheive the PieChart to be vertically alined to top.....why because
    as you specified width="100%" and height="100%" for PieChart it occupies the total dimensions of the VBox but the actual visible portion dimensions are
    less... because within the VBox you also have the legends so Flex will assign the sizes proportionately....for PieChart and Legends..
    Hope you got my point...So you should remove the width="100%" and height="100%" for PieChart then you can acheive what you needed...
    <?xml version="1.0"?>
    <!-- Simple example to demonstrate the PieChart control. -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" height="100%" width="100%">
        <mx:Script>
            <![CDATA[         
            import mx.collections.ArrayCollection;
            [Bindable]
            private var medalsAC:ArrayCollection = new ArrayCollection( [
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 },
                { Country: "USA", Gold: 35, Silver:39, Bronze: 29 },
                { Country: "China", Gold: 32, Silver:17, Bronze: 14 },
                { Country: "Russia", Gold: 27, Silver:27, Bronze: 38 } ]);
            private function displayGold(data:Object, field:String, index:Number, percentValue:Number):String {
                var temp:String= (" " + percentValue).substr(0,6);
                return data.Country + ": " + '\n' + "Total Gold: " + data.Gold + '\n' + temp + "%";
            ]]>
        </mx:Script>
        <mx:Panel title="Olympics 2004 Medals Tally Panel" height="100%" width="100%" layout="horizontal" verticalAlign="top">
               <mx:VBox verticalAlign="top" height="100%" width="100%">
                 <mx:PieChart id="chart"
                     showDataTips="true"
                     dataProvider="{medalsAC}">         
                     <mx:series>
                         <mx:PieSeries
                             nameField="Country"
                             field="Gold"
                             labelFunction="displayGold">
                         </mx:PieSeries>
                     </mx:series>
                 </mx:PieChart> 
               </mx:VBox>                 
             <mx:Legend dataProvider="{chart}"/>
        </mx:Panel>
    </mx:Application>
    Thanks,
    Bhasker Chari

  • Numbers legend problem

    i have a problem, actually i have two problems. my first thing is that i can't order a chart's legend to show in a vertical column.
    I want this legend to be shown vertically, at the right side of my chart. I can't find any way to make this happen.
    My second problem is with keynote. if my legend is shown vertically, i can't separate the values in it (CV, HR...) so if I want to use the Move in effect, the values would move in by pie wedge. Ex, first pie wedge move in, first legend value move in, and so on. I don't know i i was clear enough

    On your first problem,
    Select the legend. It will get resizing handles (little white squares) on each side
    Grab one of those handles and make the legend less wide until it is all vertical
    Move the legend to the right side of the pie
    On your second problem, because the legend is a single object it moves in as a single object. You need to make the legend manually so each category label (with its colored circle) is a separate object.  Then you can have the chart and legend move in as slice 1, legend 1, slice 2 , legend 2 ...

  • Pie chart with legend as a column

    Watch the Keynote '09 Video Tutorial "Create and Edit a Chart": http://www.apple.com/iwork/tutorials/#keynote-chart . A pie chart is shown where the legend appears as bullets arranged in a column. When I try to create a pie chart, the legend appears as bullets arranged in a row. How to switch the legend from a row format to a column format, as in the video?

    Hi Pion - I worked on those videos, so I've got your answer.
    You can select a chart's legend separately - click on it until you see bounding boxes just for the legend - then drag the left bounding box towards the right, and the numbers will become a column.
    Let's say you wanted that layout for future charts in that presentation. First arrange your legend as you would like it, then click once on the chart itself to select the chart (the legend will be de-selected - no problem). Then go to *Format - Advanced - Set Chart and Legend Geometry for All Masters*. The relationship between the legend and the cart will then stay the same.

  • SSRS 2008: how to show an empty chart with legend and x and y axis when no data available

    Hi,
    I am using SSRS 2008, I generated one chart in report designer with the data from Analysis Services (Cube).
    According to the dataset, there is no data returned when I run the query. so when I preview the chart, there is nothing but "no data available" showing on the chart.
    Here I want to know is there any possible to show an empty chart with legend and x and y axis?
    If it is possible, can you tell me how can I make it?
    Best Regards.
    Connie Zhu

    Hi,
    When there is no data, the chart displays the message "no data available". But using a little work around, you can display an empty chart.
    Please find the below steps given to achieve this
    1. Create a new dataset using TSQL to return 1 row of data having the category field and value field set to 0. Add the fields that are necessary for the category fields, series fields and datafields.
       A simple example would be like
       SELECT 'abc' as Category, 0 as Amount
    2. Add a new chart, set the category field to 'Category' and set the data field to Amount from above dataset created in step 1.
    3. In the new chart, right click the category axis and select axis properties, Click on the labels tab, check on
    'Hide axis labels' and then click ok
    4. Now set the Visibility property of both the charts depending on the rows returned from your main dataset
       a. click on your main chart and set its Hidden property to :
    =iif(CountRows("MainDataSet"),false,true) 
       b. click on the new blank chart added and set its Hidden proprety to (the opposite) :
    =iif(CountRows("MainDataSet"),true,false) 
       Note : Please change the dataset name in above expression "MainDataset" to the name of your chart's dataset
    5. Resize the new chart to the same size as your main chart, then position the new chart on the place as the main chart.
       (Note : You can set the position of new chart to be same by copying the location property from the main chart) 
    6. Now run and observe the result. When there are no rows returned by your main dataset, the new chart (the blank chart) should be displayed.
    I've added a working sample of this kind of a report
    here.
    Hope this helps. Please feel free to discuss if you have any questions.
    Please click "Mark as Answer" if this resolves your problem or "Vote as Helpful" if you find it helpful.
    BH

  • Bubble chart legend problem

    Hello.
    I have problem with bubble chart the problem is that in chart legend appear the same number of object what bubble in chart e.g. if chart have 5 bubble then legend also have 5 object.
    What do I want to obtain is that in chart appear bubble which have different color (color depends on condition) and legend relate only colors. For example if chart have 4 bubble 3 - red and 1 - green then in legend appear only two position which relate green and red color (now appear 4 object three about red and one green).
    Can any one tell me how to resolve this problem?

    I already did this I added three condition (three colors red, green and yellow) in field "Value of" I choosed "is equal to" unfortunately it didn't help.
    Maybe I joust try to describe what I want to show in this chart.
    Suppose I have table with four columns u201Cdateu201D, u201Camount (number type)u201D, u201Csize (number type)u201D, u201Crisku201D (text type) now where this value appear on chart:
    - date is x axis
    - amount is y axis
    - size is a bubble size
    - risk will be bubble color
    Now I have 3 kind of risk u201CLowu201D (green color), u201CMediumu201D (yellow color) and u201CHighu201D (red color).
    Now in my data base I have table with record:
    - u201C11-11-2009u201D, u201C1u201D, u201C2u201D, u201CMediumu201D
    - u201C12-11-2009u201D, u201C2u201D, u201C1u201D, u201CMediumu201D
    - u201C13-11-2009u201D, u201C1u201D, u201C1u201D, u201CHighu201D
    - u201C14-11-2009u201D, u201C3u201D, u201C3u201D, u201CLowu201D
    - u201C15-11-2009u201D, u201C1u201D, u201C1u201D, u201CLowu201D
    Ok so now In My chart I should have 5 bubble and in legend three value (green, red, yellow) but in this case I always have five (the same number what record in table).
    Sorry if this example is not clear.

Maybe you are looking for

  • Print the logo on the Second page

    Dear All, I want to print logo one the second & third page, on first page i don't want  print the  logo Thanks Uday

  • Including a Word document within a SAPscript?

    We currently have a SAPscript that pulls a text document from document management and prints it in the middle of  a SAPscript. Does anyone know if there is a way I could do the same thing with a Word document instead?  If so, please let me know if th

  • Imported video file not showing up

    Hey guys, I recently upgraded to a new MacBook Air and began with a clean install. Today I was trying to import a video file in iMovie. It was an HD quality movie, just under 2 hours long, an m4v file, about 2,5 GB. I started importing it, and it too

  • Windows 7 or Windows Server 2008 R2 HPC on a blade server for a 32-bit app

    Hi, My Windows 32-bit simulation program runs on Windows 7 - 64 on an ordinary desktop PC I am thinking of installing Windows 7 or Windows Server 2008 R2 HPC Edition on a blade server to hopefully speed up the simulation. I wonder if there would be a

  • Take LARGE photo with iSight

    I know there is the Take Video Snapshot action, but it takes a pretty small .tiff photo. Isn't there an action that would take a normal size photo like you get in Photobooth, with the built in iSight? I tried the Take Picture action but it says there