The line chart cannot show in IOS

Hi, I have an excel file with Power View in it, and I have upload to Share Point site, it looks all well. But when I want to watch it in my IPhone, the line chart cannot be shown.

Hi,
what I do understand, you want to display the value of each point in your Line Graph.
I guess you will be having BIGraph.xml file. In this file check the "Show Data Tips When Mouse is over bars" checkbox.
Lets try with this.
--Abhijit                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Line Chart cannot drill down on legends and lines

    I am doing a drill down Group report which will show the Sum of Last year's Sales By Country, State and city over a period of time(by date) for throughout the year 2007. Every group will have a line chart with Data title as Sum of Last year's Sales ($), Group Title as Date and legends displaying countries (or states or cities) as USA,UK,Australia. etc.. I have same sort of line chart for State and City as well. So, I got 3 levels of groups with a line-chart displayed in every group level.
    Now, the problem is my drill down would not work on chart lines or legends as it would do for a 2-dimensional data chart like a bar-chart or pie-chart. In the Chart Expert->Data->Layout:Group ->in the On Change Of event selection I am able to specify either Sales.Country (or) Sales.country and Sales.Sales.State. Both options would not let me get the correct linechart with correct data and drill-down working as well.
    The only work-around i got is to display the line chart with legends and showing the Country(or State or City) names in a field in the Group Footer. The drilling will work on those fields, but not on the legends or lines of the line chart. This make my report showing the Country names twice once on legend (with no drill-down) and once on group-footer(with drilling ability to groups below) which is untidy.
    Have anyone tried to make a drill-down crystal report on a 3-dimensional data like this? The World Sales report in Crystal reports C:\Program...\BO\Samples\General Business\World Sales Report is the best example of how i would like to see my charts to drill down. However, they drill down across a 2-dimensional data. I am publishing this Crystal Reports in Business Objects Infoview.

    Please re-post if this is still an issue

  • JDEV 10G: how to display the value of the line chart using jChart in JSP

    I have draw the line chart in JSP using the JChart and now I wan to display the value label in the line there..
    but the value wasn't show..
    anyone can help me..
    thx..

    Hi,
    what I do understand, you want to display the value of each point in your Line Graph.
    I guess you will be having BIGraph.xml file. In this file check the "Show Data Tips When Mouse is over bars" checkbox.
    Lets try with this.
    --Abhijit                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to move the origin in the line chart.

    Hello,
    I am unable to move the origin in the line chart, the general graph usually starts from next to the origin, but in the line chart for eg: I have jan,feb,march etc on x-axis, I m getting Jan at the origin place, I wanna shift it to the right  so that I get a graph in the middle.Can anybody please help me regarding this.
    suma.

    Erik:
    You can specify the '%' in the 'Postfix' field in the 'Display Settings' on the 'Chart Attributes' page.
    Varad

  • Problems with the line chart - dashboard

    I have a problem in the line chart in the dashboard SP4.
    Clicking on the legend of the graphic , the serie (line) disappears. Clicking again in the legend, the line appears but the markers don’t.
    Someone knows how to solve this problem?
    Follow the examples.
    Thanks.

    Hi Jane,
    This is definitely the tool problem.
    Might be you can try restarting xcelsius or your computer (sometimes it works, really !)
    Just out of curiosity, why do you want to clink on legends.

  • How do I remove the data symbol on Line Charts in Numbers for iOS?

    When I create a chart with many data points the data symbol gets in the way and hides the line.
    I have done a lot of looking around in the chart format options and searched online but I can't find the answer to this issue.
    Any fixes or suggestions would be most welcome.

    You're welcome.
    In Firefox 4.0 you can drag the icon back in the "View > Toolbars > Customize" window or place it on another toolbar, but that isn't possible in Firefox 3 versions.

  • Crystal reports in jsp ,the Line chart 's line can't display in jsp?

    that is example crystal-reports-10 for Jbuild 2005,
    I just modify such in viewreport.jsp:
    <crviewer:viewer displayToolbarRefreshButton="true" isOwnPage="true" displayToolbarCrystalLogo="false" displayToolbar="true" displayToolbarExportButton="true"
    displayToolbarPrintButton="true" displayGroupTree="false" viewerName="worldsales" reportSourceType="reportingComponent" reportSourceVar="<%= path %>"><crviewer:report reportName="<%= path %>"/></crviewer:viewer>
    it can't display a Line chart rpt's line and background's picture, and when I press refresh button report a Error "Error finding JNDI name (yhgl)"
    help!!

    The jars should be in your installed Crystal Reports folder( \Crystal Decisions\..\java\lib or something like that...). The problem is that your server (Tomcat and others) ignores the system classpath completely (it sets its own in its startup script).
    Therefore, in order for Tomcat to find the jars, those jars have to be placed in in %CATALINA_HOME%\common\lib\. There, they will be available for all your applications. If you don't want them available globally, put them in your particular webapp's WEB-INF\lib directory.

  • How to dynamically add new line series to the line chart in flex?

    i need to add line series dynamically..and each line  series should have a different data provider...

    A chart can have only 1 dataProvider which in my case is an ArrayCollection.
    The chart will update every time the dataProvider changes if you use binding.
    So you have to write a function that periodically populates the ArrayCollection with data from the server and the chart will update automatically.
    'Using line charts' tutorial from Adobe: http://livedocs.adobe.com/flex/3/html/charts_types_08.html#243339

  • How to use custom function for formatting the Line Chart Axes?

    Hi...
    I'm using a Line chart who's y axis value range from 0 to 50000. This is a number which it gets from it's dataProvider. I want to format this and show it as
    $50,000
    $40,000
    $30,000
    $20,000
    $10,000
    $0
    instead of
    50000
    40000
    30000
    20000
    10000
    0
    Here's my linechart code:
    <mx:LineChart id="revTimeLineChart"
                width="100%" height="100%"
                showDataTips="true" >
                <mx:horizontalAxis>
                   <mx:CategoryAxis id="lcCatAxis" categoryField="name"/>
                </mx:horizontalAxis>
                <mx:series>
                   <mx:LineSeries id="ls" yField="revenue" displayName="Revenue" showDataEffect="{slideIn}"/>      (yField is what I want to format....)
                </mx:series>
    </mx:LineChart>
    Can you please let me know how can this be achieved?
    Cheers!
    Deepak

    Hi,
    You could do something like this,
    http://www.codersrevolution.com/index.cfm/2008/10/14/Flex-Charting-Format-your-X-and-Y-Axi s
    hope it helps!
    Regards ,
    Bhavika

  • Apple mail search finds the message but cannot show its content, why?

    Hi
    I have a MacBook Pro with Mountain Lion installed on it. All the updates are also installed.
    The problem is that I can quickly find a message among 100,000 messages sorted in different folders in Apple Mail, but as I click on the message, it keeps showing "loading..." and never shows the content of that message.
    When I manually go to that message, Mail shows the content properly. So it happens only when I try to see the content of the message that has been found through search function.
    Any ideas?
    thanks,
    Farshid

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Enter "mdworker" (without the quotes) in the Filter text field. Select the most recent 50 or so messages that appear in the Console window. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    If there are long runs of repeated messages, post only one example of each. Don't post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Some personal information, such as the names of your files, may be included — anonymize before posting.
    Step 2
    Do the same with the search string "mds".

  • When using the line tool, The line doesn't show up in the box

    When I click the line tool and use it in the white box it does not show up at all but it will show up outside the box. Please help.

    I would have thought that was impossible!
    Does your account details include your name?

  • For the past few days videos are not playing properly. They appear to load but stop and start, even though the line of thumbnails shows up at the bottom. Clicking play does nothing.

    There seems to be a major problem with video playbacks both from web sites and YouTube. If I click on a video the loading circle shows it is loading but either the video starts for 2-3 seconds and stops, or it won't start at all. At the bottom of the screen there is a section that shows individual thumbnails for the video and that shows that the video has loaded, but it refuses to play. I just tried a youtube video on my iPhone and the same thing is happening. Some occasional videos seem to work okay but I have spent much time trying to watch clips.

    Use SpeedTest to test the speed of your internet.  If slow, contact your ISP to confirm if the problem is on their end.
    You have 2 versions of QT.  Version 7.x is inside your Utility folder.  Try that one.
    =================
    The latest version of Adobe FlashPlayer can be obtained from here: http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFl ash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS.
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157  and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

  • Is the line charts problem still around in Apex 2.2?

    I think the problem is pretty well known:
    Someone wants to display three series, the first containing twelve values, one for every month.
    The second contains less values, starting at month 1.
    The third contains only a few values and starts somewhere in the middle.
    In 2.0 all series where stretched over the whole diagram width, which made the diagram pretty useless. Someone said this bug would be fixed in 2.2, but somehow I can't spot the difference. Please, have a look yourselves:
    http://apex.oracle.com/pls/otn/f?p=41909:2:3117835281290116
    Does it make any sense to put more effort in experimenting, or is the bug still open?

    Hallo Sabine und Dennes,
    Da habe ich mich wohl in einen deutschsprachigen Thread eingeschaltet ...
    Leider bestand in 2.2 / 2.2.1 fuer uns nicht die Moeglichkeit, die Schwachstellen unserer SVG Charts zu beheben. Dies werden wir erst mit der Version 3.0 angehen koennen, die im kommenden Jahr heraus kommen wird – ein genaues Datum habe ich natuerlich noch nicht. In der Zwischenzeit stehe ich aber gern fuer Fragen zur Verfuegung, um vielleicht der Zeitverschwendung etwas Abhilfe leisten zu koennen. Im oben genannten Beispiel erscheint mir ein Cluster-Bar Chart als besser geeignet, wie Dennes angemerkt hat. Zudem nehme ich auch gern Verbesserungsvorschlaege und Anregungen von Euch entgegen, vieles von dem was unsere Kunden uns vorschlagen, bemuehen wir uns in zukuenftigen Versionen aufzugreifen.
    Viele Guesse vom Oracle APEX Development Team aus New York,
    Marc

  • What is the best way to create a SSRS 2005 Line Chart Report for a 12 month period?

    I'm looking for advice on how to create a SQL Server 2005 query and line chart report for SSRS 2005.
    I need to display the peak number of patients assigned to a medical practice each month for a 12 month period based on the end-user selecting a
    single month and year.
    I've previously created a report that displays all patients assigned to the practice for any single month but I’m looking for advice on how to
    how to produce a resultset that shows the peak number of patients each month for a 12 month period. I thought about creating a query that returns the peak count for each month (based on my previously created report which displays all patients assigned to the
    practice for any single month) and then use a UNION statement to join all 12 months but I'm sure that isn't the most efficient way to do this. The other challenge with this approach (twelve resultsets combined via a UNION) is that the end-user needs to be
    able to select any month and year for the parameter and the report needs to display the 12 month period based on the month selected (the month selected would be the last month of the 12 month period).
    For the report I’ve previously created that displays all patients assigned to the practice for any single month, the WHERE statement filters the
    resultset on two fields:
    Start Date - The date the patient was assigned to the practice. This field is never null or blank.
    End Date - The date the patient left the practice. This field can be null or blank as active patients assigned to the practice do not have an End Date. When the patient
    leaves the practice, the date the patient left is populated in this field.
    Using these two fields I can return all patients assigned to the practice during Nov 2012 by looking for patients that meet the following criteria:
    start date prior to 11/30/2012 (using the last day of the month selected ensures patients added mid-month would be included)
    AND
    end date is null or blank (indicates the patient is active) OR the end date is between 11/1/2012 -11/30/2012 (returns patients that leave during the month
    selected)
    Regarding the query I need to create for the report that displays the peak count each month for 12 months, I'm looking for advice on
    how to count patients for each month the patient is assigned to the practice if the patient has been assigned for several months (which applies to most patients). Examples are:
    John Doe has a start date of 6/01/2012 and an End Date of 10/07/2012
    Sally Doe has a start date of 8/4/2012 and no End Date (the patient is still active)
    Jimmy Doe has a  start of 7/3/2012 and an End Date of 9/2/2012
    Given these examples how would I include John Doe in the peak monthly count each month for May - October, Sally Doe in the peak monthly count for
    August - December and Jimmy Doe in the peak monthly count for July – Sept if the end-user running the report selected December 2012 as the parameter?
    Given the example above and the fact I'm creating a line chart I think the best way to create this report would be a resultset that looks like
    this:
    Patient Name              
    Months Assigned
    John Doe
    June 2012
    John Doe                     
    July012
    John Doe                     
    Aug 2012
    John Doe                     
    Sept 2012
    John Doe
    Oct 2012
    Sally Doe                     
    Aug 2012
    Sally Doe                     
    Sept 2012
    Sally Doe
    Oct 2012
    Sally Doe                     
    Nov 2012
    Sally Doe
    Dec 2012
    Jimmy Doe                  
    July 2012
    Jimmy Doe
    Aug 2012
    Jimmy Doe
    Sept 2012
    From the resultset above I could create another resultset that would count\group on month and year to return the peak count for each month:
    June 2012 - 1
    July 2012 – 2
    Aug 2012 - 3
    Sept 2012 - 3
    Oct 2012 - 2
    Nov 2012 - 1
    Dec 2012 - 1
    The resultset that displays the peak count for each month would be used to create the line chart (month would be the X axis and the count would
    be the y axis).
    Does this sound like the best approach?
    If so, any advice on how to create the resultset that lists each patient and each month they were assigned to the practice would be greatly appreciated.
    I do not have permissions to create SPs or Functions within the database but I can create temp tables.
    I know how to create the peak monthly count query (derived from the query that lists each patient and month assigned) as well as the line chart.
    Any advice or help is greatly appreciated.

    Thanks for the replies. I reviewed them shortly after they were submitted but I'm also working on other projects at the same time (hence the delayed reply).
    Building a time table and doing a cross join to my original resultset gave me the desired resultset of the months assigned between dates. What I can't figure out now is how to filter months I don't want. 
    Doing a cross  join between my original resultset that had two dates:
    08/27/2010
    10/24/2011
    and a calendar table that has 24 rows (each month for a two year period)
    my new resultset looks like this:
    I need to filter the rows in yellow as the months assigned for stage 3 that started on 8/27/2010 should stop when the patient was assigned to stage 4 on 10/24/2011.
    You'll notice that Jan - Sept 2011 isn't listed for Stage 4 assigned on 10/24/2011 as I included a filter in the WHERE clause that states
    the Months Assigned value must be greater than or equal to the date assigned value.
    Any advice would be appreciated.

  • Show Timestamp on Y axis in a SSRS line chart.

     I have a column with datatype as timestamp. And i want to show that column on Y axis in a line chart. two sample values from that column are 03/01/2014 11:30 PM and 03/02/2014 12:10 AM. In this case the data point for first value should be less compare
    to the second one, i.e. the series should consider the complete timestamp. Is there a way in SSRS to achieve it.
    If I only take the time value from timestamp on Y axis and plot the chart then the data point for 12:10 AM is less than the 11:30 PM, which is not true in this case.
    ApoorvaW

    Hi ApoorvaW,
    In Reporting Services, if we directly add the Timestamp field to Y Axis, it displays the count values in the line chart. When we modify the expression of the value to [Timestamp], it displays the date value in the Y Axis. Though it displays date type as
    the axis label, it represent the complete timestamp.
    So in my environment, the timestamp display very well in the line chart. If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • My Apple ID cannot restart my iPhone 4S

    Hello, I have an iPhone 4S. By playing with it, my daughter has zoomed the screen and I couldn't reduce it as I didn't know how to do it at that time. After several access attempts with my passcode, my iPhone has blocked. Afterwhat, I've come up to r

  • Start up disc full, tried everything I can find, no changes, help?

    I posted this somewhere earlier, sorry for repeating, but I can't find it.  AFter getting the start up disc full message, I backed up everything on an external hard drive with Time Machine, and additionally, copied everything from iphoto on to the sa

  • Create T.O using outbound delivery. Need to update the storage type.

    Hi All, I am using L_TO_CREATE_DN to create a T.O using an outbound delivery. It creates the T.O. But I need to decide at the time of creating the T.O the storage type to be used. I tried using the F.M L_TO_CREATE_MULTIPLE but that does not update th

  • Tax code update in inforecord.

    Hi, Inforecord was created automatically and the tax code was updated as in PO, By setting info update indicator in PO, Now As per tax calculation was changed and new tax code was created. But every time when we enter the tax code in PO, It was not u

  • LR4.3 "Correction" Brush doesn´t work anymore_ Overlay arrow active

    Hello LR 4.3 world I´m working with LR 4.3 for 3 month but since  days the "correction" brush doesn´t work anymore. The overlay button is still active and the system reboot I tried more than once ;-). I miss this function and maybe one of you is able