Discoverer Bar Chart Data Points

Hi everyone,
I am creating a Bar Chart in Discoverer with the data points to be displayed at the top. Does anyone know how to make the datapoints not display decimal places. I've tried to change the number format in the table and through administrator as well. The table does not display decimal places but the Bar Chart Data Points continue to do so. Any suggestions or thoughts to try would be welcomed. Thanks!

If you edit the chart and choose X-Axis Scale I believe you can set the number of decimal place there. Should be able to set it to 0.

Similar Messages

  • Is it possible to link a text box or shape to a specific chart data point

    Is it possible to link a text box or shape to a specific chart data point?
    Thanks for any help.
    saint3x

    It seems you may be trying to make a timeline.  There are timeline tools out there that may be better for your particular task than Numbers.
    Google search"
         http://www.beedocs.com/easytimeline/
         http://www.tiki-toki.com/desktopapp/
    App Store result for a search "timeline - calendar" produce several options
    Numbers has no object like a textbox or line that takes input from a cell of a table.  You can make suggestions to Apple using the menu item "Numbers > Provide Numbers Feedback"

  • Web Application Designer (Line Charts-Data Points)

    Hi
    I have to display the query in WEB as a Line Chart
    The Query is on Cal Day Vs Mean Value
    The user enter the Cal Day (From/To)..the Line chart is supposed to display mean Value on No of Cal Days users choosed.
    In query created variable for Cal Day..but how can i define the Data Points for the chart in the Web designer.
    Bydefault we have to specift no of data points we required..how can i change that to be based on the range user entered
    Than ks

    Hi Krishna,
    When you define a chart, you define a number of series, but when you run the WAD, it takes the number of series it has the query.
    Regards,
    Diego

  • Customize Mouse over values when hovering on a chart data point

    Hi
    Can someone please help me here? I have a dashboard which displays 4 series in a combinational chart. Along with the numeric values, I have another column which displays the commentary / justification of a data point on a particular date.
    I want to show this as a mouse over value to change when user hovers over different dates.
    Is it possible?

    Isakov,
    Here you go...
    http://xcelsiusandme.blogspot.com/2009/07/xm-sample-7-customizing-mouse-over.html
    -Anil

  • Line charts: data point symbol resize?

    I'm working with charts in Pages and would like to be able to have a greater variety of lines in my line chart. In addition to selecting the data point symbol (square, circle, etc), I wish I could resize that symbol. I know I can resize the line width from the Graphic tab of the Inspector.
    Is there a way to shrink the data point symbol from the Inspector? From anywhere?

    If I understand your question, this from the Pages online help may give the answer:
    To mark line, area, and scatter charts with data point symbols:
    Select the entire chart. You can also select the chart series (the line or area shape) that you want to mark with data point symbols.
    Click Inspector in the toolbar, and then click the Chart Inspector button.
    Click Series (except for scatter charts).
    Choose a symbol from the Data Point Symbol pop-up menu.
    Choose one of the following options from the Symbol Fill pop-up menu:
    To fill the symbol with the same color as its outline, choose Use Stroke Color.
    To fill the symbol with a solid color, choose Color Fill, click the Fill color well, and pick a color.
    To fill the symbol with a gradient, choose Gradient Fill and use the gradient controls to set the colors and change the angle of the gradient.
    To fill the symbol with an image, choose Image Fill and select the image you want. You can also resize the image by choosing an option from the pop-up menu above the Choose button.
    To fill the symbol with a tinted image, choose Tinted Image Fill and select the image you want. Click the color well to the right of the Choose button to change the tint color. You can also resize the image by choosing an option from the pop-up menu above the Choose button.

  • 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

  • BIP 11.1.1.7 - Stacked Bar chart data label not visible in pdf

    Hi all,
    I have a report built with the online editor. This contains a stacked bar chart with percentage values in a repeating section and I made the property DataVisible=true.
    When I view the report in interactive mode it all works: I can see the data label for every value of the parameter but when I view in any other format (PDF, PPT, ecc..) the data labels are visible in the first chart (for the first value of the parameter) while in the other charts they aren't. This doesn't happens for other types of chart, for example with a pie chart.
    Can someone help me or tell if it is a bug?
    Thanks,
    Micaela

    Hi Mitalee,
    Would you please check the PAM at https://websmp108.sap-ag.de/~sapidb/012002523100018972812014E
    On page 11 it says 64 bit IE11 is not supported; is your IE11 32 bit or 64 bit?

  • Xcelsius Dashboard: Right click on chart data point

    Hello friends.
    I am working on Xcelsius dashboard development and I have question regarding drill down or connectivity from particular point from a chart.
    I have a line chart with different data points and now i want to show some details for a particular point on chart. What are different approaches to connect it to system and show details. I heard we can right click at some data point and then connect to BW system through Webi and show details.
    Can anyone let me know about this? Any pointers will be surely appreciated,
    Thanks,
    Agasti.

    Hi Agasti,
    you can configure the dril down properties of your chart so that the selected value is written in a cell. Add then a URL button (Web Connectivity), assign an openDocument URL to it and set under the Behaviour tab the drill-down cell (ie. the cell where the drill down value is written to) to be the trigger.
    Regards,
    Stratos

  • Displaying Bar Chart Data

    Hi Every one
                      I want to display a bar chart with three different values in a single bar.Till now iam able to display a bar chart with single value for a single bar.Can any help on this will be help ful.
    Here are the details of the bar chart that to be displayed.
    on Yaxis the total count of the values
    X-axis MonthName from Jan to Dec.
    I have to show the count for three values on the chart for each month
    Thanks,
    Prasad.

    Have you considered the Stacked Bar Chart?  You will need to make sure that the dataset returning from your query template is 'square', meaning that each month has all 3 of values represented.  Return null or 0 for a value that may not apply for a given month.

  • Formatting bar chart data label

    Post Author: dkekesi
    CA Forum: General
    Hi All,I have a chart that contains how long it took to perform a certain task for each user (user name is on the X axis, times on the Y axis). The problem is that the data is displayed in seconds. I wish to format the data label on the bars so they show 00:45:42 (in hh:mm:ss format) instead of 2742 seconds, for example.I have not found a way to do this. Is there a way at all?Thanks for the help. Daniel

    Post Author: V361
    CA Forum: General
    I have CR XI, not sure if this is supported in earlier versions.  You can create a formula, and use the formula in the graph.  For example: 
    Numbervar Totalsec := Sum ({@Login Hrs secs}, );
    NumberVar Days :=(Truncate (TotalSec / 86400)*24);
    NumberVar Hours :=(Truncate (Remainder (TotalSec,86400) / 3600))+ Days;
    NumberVar Minutes :=Truncate (Remainder (TotalSec,3600) / 60);
    NumberVar Seconds :=Remainder (TotalSec,60);
    Hours & ":" & Minutes & ":" & Seconds
    The addition of *24 in the NumberVar Days sum combined with the addition of days to the NumberVar hours gives a total time in hours no matter whether in excess of 24 hours or not.
    Use this formula in your chart. instead of your seconds field.

  • Stacked 100% bar chart - Problem with datatips for zero value data points

    I have a stacked 100% bar chart that shows datatips in Flex 4.   However, I don't want it to show datatips for
    data points with zero values.   Flex 4 shows the datatip for a zero value data point on the left side of a bar if the data point is not the first in the series.
    Here's the code that illustrates this problem.    Of particular concern is the July bar.    Because of the zero value data point problem, it's not possible to see the datatip for "aaa".
    Any ideas on how we can hide/remove the datatips for zero value data points ?        Thanks.
    <?xml version="1.0"?>
    <s:Application
    xmlns:fx="
    http://ns.adobe.com/mxml/2009"xmlns:mx="
    library://ns.adobe.com/flex/mx"xmlns:s="
    library://ns.adobe.com/flex/spark"creationComplete="initApp()"
    height="
    1050" width="600">
    <s:layout>
    <s:VerticalLayout/>
    </s:layout>
    <fx:Script><![CDATA[ 
    import mx.collections.ArrayCollection;[
    Bindable] 
    private var yearlyData:ArrayCollection = new ArrayCollection([{month:
    "Aug", a:1, b:10, c:1, d:10, e:0},{month:
    "July", a:1, b:10, c:10, d:10, e:0},{month:
    "June", a:10, b:10, c:10, d:10, e:0},{month:
    "May", a:10, b:10, c:10, d:0, e:10},{month:
    "April", a:10, b:10, c:0, d:10, e:10},{month:
    "March", a:10, b:0, c:10, d:10, e:10},{month:
    "February", a:0, b:10, c:10, d:10, e:10},{month:
    "January", a:10, b:10, c:10, d:10, e:10}]);
    private function initApp():void {}
    ]]>
    </fx:Script>
    <s:Panel title="Stacked Bar Chart - Problems with DataTips for Zero Value Items" id="panel1">
    <s:layout>
    <s:HorizontalLayout/>
    </s:layout>
    <mx:BarChart id="myChart" type="stacked"dataProvider="
    {yearlyData}" showDataTips="true">
    <mx:verticalAxis>
     <mx:CategoryAxis categoryField="month"/>
     </mx:verticalAxis>
     <mx:series>
     <mx:BarSeries
    xField="a"displayName="
    aaa"/>
     <mx:BarSeries
    xField="b"displayName="
    bbb"/>
     <mx:BarSeries
    xField="c"displayName="
    ccc"/>
     <mx:BarSeries
    xField="d"displayName="
    ddd"/>
     <mx:BarSeries
    xField="e"displayName="
    eee"/>
     </mx:series>
     </mx:BarChart>
     <mx:Legend dataProvider="{myChart}"/>
     </s:Panel>
     <s:RichText width="700">
     <s:br></s:br>
     <s:p fontWeight="bold">The problem:</s:p>
     <s:p>Datatips for zero value data points appear on left side of bar (if data point is not the first point in series).</s:p>
     <s:br></s:br>
     <s:p fontWeight="bold">For example:</s:p>
     <s:p>1) For "June", eee = 0, mouse over the left side of the bar to see a datatip for "eee". Not good.</s:p>
     <s:br></s:br>
     <s:p>2) For "July", eee = 0 and aaa = 1, can't see the datatip for "aaa", instead "eee" shows. Real bad.</s:p>
     <s:br></s:br>
     <s:p>3) For "Feb", aaa = 0, datatip for "aaa" (first point) does not show. This is good.</s:p>
     <s:br></s:br>
     <s:p>4) For "Mar", bbb = 0, datatip for "bbb" shows on the left side of the bar. Not good.</s:p>
     <s:br></s:br>
     <s:p fontWeight="bold">Challenge:</s:p>
     <s:p>How can we hide/remove datatips for zero value data points?</s:p>
     <s:br></s:br>
     </s:RichText></s:Application>

    FYI.
    Still have the issue after upgrading to the latest Flex Builder 4.0.1 with SDK 4.1.0 build 16076.   
    Posted this as a bug in the Adobe Flex Bug and Issue Management system.     JIRA
    http://bugs.adobe.com/jira/browse/FLEXDMV-2478
    Which is a clone of a similar issue with Flex 3 ...
    http://bugs.adobe.com/jira/browse/FLEXDMV-1984

  • Drag Data Points

    Hi everyone,
    how can i make my line chart data points draggable?

    Thanks for you guys, I can now drag those points on the series now,
    simply add LineChart.dragEnable = true.
    How weak i am in flex!!
    A new problem now is I want to reset the dataProvide when the drag action
    is complete, as I add the dragComplete event for the LineChart, well, How
    can I get the new data correspond to the position that my mouse point at?
    hopefully i state my question clearly, Thank you!

  • Color Highlights not working in bar chart with two data points

    Iu2019m using Crystal Reports 2011.  I have created a bar graph using two data fields in the Chart Expert.  I have set the colors for the bars in the Color Highlights tab, but the colors that I have defined have not been applied to the graph.  
    I have tried changing the colors numerous times and have done it in both design and preview modes.  It seems to be somethign with having two data points because I don't have this problem when using just one data point.  Please help!

    is the colour mode Color by group or color by series

  • SSRS Bar Chart grouping date series into Months, setting scaler start and end ranges

    I've been trying to solve this issue for a few days now without writing a sql script to create a "blank" for all of missing data points so that I get a bar for each month.  I have date series (by day) data points grouped by two items
    that creates a set of bar charts.  EG:  one chart per product in the tablix detail grouped to site level.
    My issue is I would like the start and end of the charts to be the same for all charts and the only way I get it to work is with a chart that continues to show each date on the chart. 
    EG:
    I have the graph start and end points set and scaling by month as I would like but each bar is a day instead of aggregating to a month level.   My issue I hope to find a workaround for is if I go to Category Groups and define the grouping
    to group with a year and month function the series is no longer treated as date data and I cannot control scaling.  It works fine if all months have activity, but I can't figure out how to always have all charts start at "May 2012" in this example. 
    The only start and end point that I've been able to get to work once doing this are integer based, eg normal start would be 1 for each graph, but 1 doesn't equate to the same month from chart to chart.
    I hope SSRS can provide the solution.  I do know I can write a query that creates a ZERO value for each month/product/site but I don't want to leave the client with a query like that to support.
    -cybertosis

    Hi cybertosis,
    If I understand correctly, you want to display all month category label in the X-Axis. You have configure the Scalar Axis, however, it cannot display the requirement format.
    In your case, if we want the specific data format, we can configure Number property to set the corresponding Category data format. Please refer to the following steps:
    Right click the X-Axis, select Horizontal Axis Properties.
    Click Number in the left pane. Click Date option in the Category dialog box.
    Then, select Jan 2000 option.
    Please refer to the following screenshot below:
    If there are any misunderstanding, please feel free to let me know.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • Stacked bar chart showing zeros when there is no data

    Hi,
    I am developing a stacked bar chart which plots month vs sales of 3 different products.
    I am showing data points and the total sales on chart.  Every thing looks good except the zeros displayed on the chart if there are no sales for a product for a particular month... how to get rid of these zeros ? i mean how to display the value only if there is some data ?
    Thanks

    Sounds like you have a left outer join from your product table to the sales data. Thus product is listed even when no data present.
    Try changing join to Equal
    Ian

Maybe you are looking for

  • Two versions of time-dependant hierarchy?

    Hi, Is it possible to have 2 versions of time-dependant( entire hierarchy) .. if yes how... Thanks

  • Problem with external monitor

    Hello all, did you ever use an external monitor with the mac book pro? Once disconnected the external monitor, the Mac freezes and becomes unresponsive. Do you know why? thank you very much Fulvio

  • Error in EWT certificate printing

    Dear SAP Experts, I have done J1inchln and j1inbank successfully but I am not able to take the printout of certificate through J1incert. In J1incert it is giving error "No data selected for printing". Please tell me know where I am wrong. Thanks & Re

  • Would like to use Quicktime to open Realplayer .rm files.

    I was curious if anybody knew of a Plug-in that would allow Realplayer .rm files to be played on Quicktime. I'd rather not use Realplayer if don't have to. Another option would be if anybody knows of a converter similar to Flip-4-Mac that would allow

  • Converting URL to filename

    Hi all. I have the following piece of code: String sFilename = ""; URL u = ClassLoader.getSystemResource("duncan.txt"); if (u != null)   sFilename = new File(u.getFile()).getPath(); }The intention is that it finds this file, and the gets the filename