Chart binded data not showing when Window State property of form is set to Maximized

Possible bug?
Using In VS 2013 Community, .NET 4.5, MySQL w/Connector/NET...
When a form is maximized, it wil not render the binded datasource on a chart.
Example is a new project...  chart dragged onto a form... add a Dataset when initializing the chart and immediately bind that to the Datasource property with no changes to the chart except changing your XValue from a column to a line type. I only have
3 columns in the table. keyId, entryDate, mcf.
I can also maximize the window after the form is up and running and it doesn't effect the chart at all.
Any ideas? I need the window to run in a maximized state.
Many thanks!

Hi,
to debug your web content in IE
f12>Debug tab, select "Break on all errors"... the debugger will break on any errors.
Emulation tab, tells you which emulation mode the browser is using and which userAgent string it is using.
File>Properties shows which IE security zone it maps to.
"When a form is maximized it will not render the binded datasource on a chart"
Probably you are running from a localhost proxy (http://localhost:8080)... the IE developer tool will show you any scripting errors. Publish your 'test' to a named webserver. eg.
http://localhost/test.local
- Questions about html, css and scripting for website developers. If possible please include with your question a link to your website or a mashup that shows the issue.
Regards.
Rob^_^

Similar Messages

  • Date not showed when report is viewed in PDF .

    Hi,
    We have a text field that shows the date on which the report is running.Date is not showed when report is viewed in PDF.But in HTML we can view them . Can any one help me out?
    Totally there are four pages for the report.

    I have observed the PDF driver iin EPM 11.1.2.x is not up-to-date and technically the Date (Text) is there just like in HTML. However, when you increase the View (Zoom in), it eventually does show up.
    I have chatted with Oracle Support, and they will not address it with a patch for now.

  • Data not showing when not defining PARAMETER

    hi all,
    i have created a report in which  i have define two Parametres i-e S_ANLKL FOR ANLA-ANLKL DEFAULT '1100' to '2790' and
    S_ZUJHR LIKE ANLA-ZUJHR*.When i execute it by giving year 2005, 2006,2007 or 2010, it gives me data but when i execute it without defining any year it does'nt show me any data.Eventhough i have check in the table that there data when execute at table level.Could anybody identified my mistake.Following are the code for report:
    include zalsd_alv_incl.
    *Define Tables
    TABLES:ANEP,ANLA,ANLC.
    SELECT-OPTIONS:
        S_ANLKL FOR ANLA-ANLKL DEFAULT '1100' to '2790'.
    PARAMETER:
        S_ZUJHR LIKE ANLA-ZUJHR.
    DATA:BEGIN OF gi_anla OCCURS 0,
         bukrs  LIKE anla-bukrs,
         ANLN1  LIKE anla-ANLN1,
         ANLN2  LIKE anla-ANLN2,
         ZUJHR  LIKE anla-ZUJHR,"Fiscal Year
         AKTIV  LIKE ANLA-AKTIV,"Asset capitalization date
         ANLKL  LIKE ANLA-ANLKL,"Asset Class
         END OF gi_anla,
         BEGIN OF GI_ANLC OCCURS 0,
          bukrs  LIKE anlc-bukrs,
          NAFAP  LIKE anlc-nafag,"Posted Depreciation
          kansw  LIKE anlc-kansw,"Asset Acquisation Value
          ANLN2  LIKE anlc-anln2,"Asset Subnumber
          ANLN1  LIKE anlc-ANLN1,"Main Asset Number
          AFABE  LIKE ANLC-AFABE,"Real depreciation area
          ANSWL  LIKE ANLC-ANSWL,"Transactions for the year
         END OF GI_ANLC,
        BEGIN OF gi_main OCCURS 0,
         sno    type   i,       "S.No
         bukrs  LIKE anla-bukrs,"Company code
         ANLN1  LIKE anlc-ANLN1,"Main Asset Number
         anln2  LIKE anlc-anln2,"Asset Subnumber
         AKTIV  LIKE ANLA-AKTIV,"Asset capitalization date
         ANLKL  LIKE ANLA-ANLKL,"Asset Class
         ZUJHR  LIKE anla-ZUJHR,"Fiscal Year
         NAFAG  LIKE anlc-nafag,"Ordinary Depreciation Posted
         kansw  LIKE anlc-kansw,"Asset Acquisation Value
         PSTEND LIKE anlc-PSTEND,"Posting depreciation up to period
         AFABE  LIKE ANLC-AFABE,"Real depreciation area
         ANSWL  LIKE ANLC-ANSWL,"Transactions for the year
           END OF gi_main.
    DATA: date_from TYPE d,
          date_to   TYPE d.
    START-OF-SELECTION.
         PERFORM get_data.
         PERFORM organize_data.
         PERFORM f_display_report.
      END-OF-SELECTION.
    form get_data.
      Data:
            lv_year(4) type n,
            lv_prvyear(4) type n,
            lv_datefrom type d,
            lv_dateto type d.
        move s_ZUJHR to lv_year.
        lv_prvyear = lv_year - 1.
        concatenate lv_prvyear '10' '01' into lv_datefrom.
        concatenate lv_year '09' '30' into lv_dateto.
      SELECT anlc~bukrs anlc~anln1 ANLC~ANLN2 ANLA~ZUJHR kansw nafaG PSTEND ANSWL ANLKL AKTIV
        INTO CORRESPONDING FIELDS OF TABLE gi_main
        FROM
        ANLC
        INNER JOIN ANLA ON
        anlc~bukrs = anla~bukrs AND
        anlc~anln1 = anla~anln1 AND
        ANLC~ANLN2 = ANLA~ANLN2
       WHERE ANLC~AFABE eq '01'
        AND ANLA~ZUJHR EQ S_ZUJHR
        AND   ANLA~ANLKL in S_ANLKL
        AND   ANLA~AKTIV between lv_datefrom and lv_dateto.
        ENDFORM.
      FORM organize_data.
      data: lv_index type sy-tabix.
      LOOP at gi_anla.
      move sy-tabix to gi_main-sno.
        READ TABLE gi_anla WITH KEY bukrs = gi_anla-bukrs
                                    anln1 = gi_anla-anln1
                                    anln2 = gi_anla-anln2.
        MOVE-CORRESPONDING gi_anla to gi_main.
        READ TABLE gi_anlc WITH KEY bukrs = gi_anlc-bukrs
                                    anln1 = gi_anlc-anln1
                                    anln2 = gi_anlc-anln2.
        IF sy-subrc = 0.
          MOVE-CORRESPONDING gi_anlc to gi_main.
        ENDIF.
        CLEAR gi_main.
    ENDLOOP.
        ENDFORM.
        form f_display_report.
      perform fill_fieldcat using 'SNO'       5    'S.No.' 'gi_main'.
      perform fill_fieldcat using 'ANLKL'     20   'Asset Class' 'gi_main'.
      perform fill_fieldcat using 'ANLN1'     20   'Asset Number' 'gi_main'.
      perform fill_fieldcat using 'ANLN2'     20   'Asset Subnumber' 'gi_main'.
      perform fill_fieldcat using 'AKTIV'     20   'Asset Capitalization Date' 'gi_main'.
      perform fill_fieldcat using 'KANSW'     20   'Asset Acquisation Value' 'gi_main'.
      perform fill_fieldcat using 'NAFAG'     20   'Posted Depreciation' 'gi_main'.
      perform fill_fieldcat using 'PSTEND'    20   'Posting depreciation up to period' 'gi_main'.
      perform fill_fieldcat using 'ANSWL'     20   'Transactions for the year' 'gi_main'.
      perform add_heading_alv using c_alv_head_header '' 'Ghulam Farooq Group'.
      perform display_alv using gi_main[].
    endform.

    hi abapGenin,
    i have used my PARAMETER as SELECTION-OPTION as under:
    SELECT-OPTIONS:
        S_ANLKL FOR ANLA-ANLKL DEFAULT '1100' to '2790',
        S_ZUJHR FOR ANLA-ZUJHR NO INTERVALS NO-EXTENSION.     
    and also used IN expression insetead of EQ in ANLA~ZUJHR IN s_zujhr as under
    SELECT anlc~bukrs anlc~anln1 ANLC~ANLN2 ANLA~ZUJHR kansw nafaG PSTEND ANSWL ANLKL AKTIV
        INTO CORRESPONDING FIELDS OF TABLE gi_main
        FROM
        ANLC
        INNER JOIN ANLA ON
        anlc~bukrs = anla~bukrs AND
        anlc~anln1 = anla~anln1 AND
        ANLC~ANLN2 = ANLA~ANLN2
       WHERE  ANLC~AFABE eq '01'
        AND   ANLA~ZUJHR IN s_zujhr
        AND   ANLA~ANLKL in S_ANLKL
        AND   ANLA~AKTIV between lv_datefrom and lv_dateto.
    but still data is not coming.
    Thanks
    abapfk

  • E63: Day & Date not showing when profile changed

    Hello All,
    When I change profile from "Normal" to something else on Nokia E63, I do not see day and date on the top right corner  and instead see the profile name. I would like to see day and date with profile name there. Is there anyway I can get this done?
    When phone goes to screen saver mode I have set up a digital clock as screen saver and in that I can see profile, day, date and time.
    Thanks,
    Ray 

    Hello All,
    When I change profile from "Normal" to something else on Nokia E63, I do not see day and date on the top right corner  and instead see the profile name. I would like to see day and date with profile name there. Is there anyway I can get this done?
    When phone goes to screen saver mode I have set up a digital clock as screen saver and in that I can see profile, day, date and time.
    Thanks,
    Ray 

  • XMP data not showing up in the custom file info panels when upgraded to CC

    For several versions of Photoshop, I have been able to use a modified custom file info panel to input, update, and track psd files. With each version of photoshop there are always some changes in the way the object data is handled. The lastest challenge is:
    1. XMP data not showing up in the custom file info panels when upgraded CC from CS6.
    2. Raw data is not visible in CC in the File info panel.
    3. This occurs in new documents where we create the xmp wrapper while the file template is built.
    4. When metadata is manually entered into the file, the data is not added to the XMP wrapper when it is recreated on the save.
    5. When a file that was created in CS6 is opened that contains the Metadata in the file info template. It is visible. the Raw data is also visible. Once the XMP wrapper is recreated - write and then close. The data is no longer available. the Raw data will not pull up in the file info panel.
    Any feedback or a direction will be appreciated.

    I have a script that the user runs to input xmp data into a Customized version of the generic file info panel. it is data that is gathered from the user when the psd file is created. once the file is open in photoshop. the information is visible in the File info panel , the raw data, and as a schema addition in the advanced tab.
    in CC the nodes and the children of the XMP packet have changed positions. so that the XML -this.XMP.child(0).appendChild(this.createNode())
    is no longer the node that can be appended.
    Where XML.child(0).elements().length(); would enable the xmlns to be added in CS6
    <rdf:Description xmlns:phsa="' + this.namespace + '" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:x="adobe:ns:meta/" rdf:about="" />'
    it is visible in CC as namespace in a different arrangement. XML.child(0).child(0).namespaceDeclarations().toString()) and the children are  XML.child(0).child(0).elements().length().toString()); There are now 7 child nodes where before there were 1.
    with all shifted, the initialize of the values and the delete XMP packet wrapper and create new or the amend to the XMP packet wrapper is undefined.

  • My ipod touch 4g does not show in Windows 7 or itunes.  I've removed and reinstalled itunes, stopped and started apple mobile services and changed out cables.  Ipod is charging when connected.  I've also done a complete rollback to factory defaults.

    My ipod touch 4g does not show in Windows 7 or itunes, I've removed and reinstalled Itunes.  I've done a factory default, and I've changed out cables. The ipod shows connected but does not show.

    Did you remove and reinstall all the Apple software by:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    Run this to see if it helps determine the cause
    iTunes for Windows: Device Sync Tests
    Try on another computer to help determine if you have an iPod or computer problem'
    Last, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar

  • Hundreds of my iPhoto pictures will not be copied and will not show when I double-click on them.  When I do in iPhoto an exclamation surrounded by a triangle appears.  Though I can see the picture in the small tiles below it will not expand.

    Hundreds of my iPhoto pictures will not be copied and will not show when I double-click on them.  When I do in iPhoto an exclamation surrounded by a triangle appears.  Though I can see the picture in the small tiles below it will not expand.  I also cannot attach any of these pics into an e-mail or into any other file.  I have already went through all 3 Repair options and when that did not solve it went through a complete Rebuild.  Any Help?!  Any Suggestions on how to fix this?!  I have spent almost 2 days now going through all of the published help.
    I have backups going back 6 months - I have not had the real need to check every album before - but - all of my backups also have this same problem.

    The triangle with the ! indicates that the connection between the thumbnail and the orginal is missing - this can be caused by many things including database corruption and user action emoving the originals photos on urpose or by accident
    If the database is corrupted then rebuilding is the solution - backup and depress the option and command keys, launch iPhoto and rebuild your database  --  if the iPhoto rebuild does not cure the problem then download iPhoto Library manager and use its rebuild command which creates a totally new library leaving the existing one untouched
    If you have deleted the photos then you need to start over with a new library and import the photos you have not deleted into it
    You can select one of the problem photos and use the reveal original in finder commander (file menu) to see if the original is there - if it is a finder window will open showing it
    LN

  • Help: Records not showing when cube is placed under the Multiporivider

    Hi Experts,
    I have a Cube called Bcube with char Plant,calm year/month, material and Key Figure, Pqty
    When I generate a report on this Cube, everything looks fine and I see plants, year, etc in the report
    There are 2 other cubes:
    MCube also has char Plant,calyear/month, material and Key Figure: Pqty, Sqty, TQty, AQty
    DCube also has same as BCube: with char Plant,calyear/month, material and Key Figure Pqty
    When I place all three cubes under the multiprovider, the values from the BCube does not show up in reports
    e.g. in a simple report such as
    Row       :  Plant
    Columns:  Pqty, Sqty, TQty, AQty
    In the Multiprovider, under the Indentification of Characteristics, I checked the boxes for all three cubes whenever the same charactertic in all cubes showed up for identification: e.g..
    InfoProvider  InfoObject
    Bcube----
    Plant
    MCube-------Plant
    DCube -
    Plant
    and same for. e.g. 0Calyear
    and same for Key Figures, e.g. I checked all 3 boxes  for PQty which exists in each of the cubes
    1. Why is my data for BCube not showing when reporting against the multiprovider?
    2. what does it mean by checking the 3 boxes for Plant? and checking the 3 boxes for 0Calyear.
    Thanks

    Hi,
    regarding your questions:
    1. When I run listcube against the multiprovider, I only went to the output list to select the fields I needed in the output; then entered the particular cube e.g. BCube in the infoprovider field. That was it (NO other selection) and I got the described results I explained earlier. If you have a specific test for me to try, please let me know.
    2. Please find the settings in both characteristics and key figures for all cubes in the MULTIPROVIDER maintenance screen:
    Characteristic Assighment:
    0calyear -- 3 boxes checked for BCube, DCube & MCube
    Plant -- 3 boxes checked for BCube, DCube & MCube
    0Material-- 3 boxes checked for BCube, DCube & MCube
    Key Figure selection
    PQty-- 3 boxes checked for BCube, DCube & MCube
    Sqty --checked for DCube, this key fig is ONLY in DCube
    TQty--checked for DCube, this key fig is ONLY in DCube
    AQty--checked for DCube, this key fig is ONLY in DCube
    I hope this helps you to guide me.
    Or, were you referring to mappings in the transformations?
    Thanks

  • LSMW - Read Data not showing in Converted Data

    Hi,
    I am using LSMW to load data from a flat file (via recording).  I have it working except I have one issue.  When I display the data in read data all fields are showing.  No errors popup when I select convert data.  When I select display converted data the last few fields are missing.  Any ideas why or how to fix this?
    Any help is appreciated as I do not know how to proceed.
    Thanks,
    Annette
    Edited by: Annette Ameel on Dec 4, 2008 5:37 PM

    HI Bush,
    Currently I am also facing the same problem. In "display read data" it is showing all the field values. No error msg in "convert data". But only 2 fields are displaying in "display converted data". not showing any values in rest of the fields. Kindly suggest me how you fixed this problem

  • 210-4125 will not boot when windows 7 x64 is installed

    i have posted this problem a while ago "210-4125 will not boot when windows 7 x64 is installed"
    hoping that some one new might have had the same problem
    HP.......................................HP MINI PC  210-4125
    model ................................210-4125
    Bios ...................................F08
    ser no................................ [edited Serial Number by Moderator]
    product no.........................A8V56EA#ABU
    Ram ..................................4.0 GB
    system board ID............... 338d
    processor .........................Atom(TM) CPU N2800 1.86GHz
    Product configuration ID..0797200000204600000300100
    acording to INTEL the cpu is X64 bit, but the bios will not let a X64 boot up only a x32 bit ?
    and i get a message on black screen  "you are trying to load an opperating system not compatable" or some thing like that
    it would seem that the bios is the problem and not the CPU ? the 08 bios update only covers x32 bit and not x64
    if any one out there is running x64 bit windows 7 on the 210-400 range of netbook   can you tel me
    1. model no
    2.CPU
    3.Ram installed
    4 bios No
    thank you
    JB

    thank you George
    i will bear that in mind next time
    i see that you work for HP ? do you have any suggestion's for my problem ?
    as i mentioned before the notebook works faultlessly when X64 windows 7 is installed via the OEM disk in the external DVD drive , but if i disconnect the DVD drive it will not boot, but gets stuck in boot loop , then if i connect the drive with any windows installation disc loaded in it , it loads perfect and works perfect even if i disconnect when loaded  , but i can not keep the drive connected ?
    i have tried to use a USB flash drive to install X64 windows 7 but it comes back that the present CPU is not compatible ??
    when it clearly states on Intel web site that it is and it works perfect when loaded ?? even the Windows update manager confirms that it will run all X64 windows OS
    i understand the the bios "InsydeH20" is a very difficult bios to work with, and that Insyde have blocked the "hidden menu" via software ? i have exhausted all the software functions to open the complete bios that i can find at the moment  ,  i think it is locked out from out side the bios and not from inside.?
    any  pointers in the right direction would be very helpful  ,
    many thanks
    John

  • Hey Apples Users, my iPod 80 GB ins not showing in windows, itunes and my computer

    hey Apples Users,
    my iPod 80 GB ins not showing in windows, itunes and my computer
    Could anyone in there show me the best solution for the same
    thanks in advance

    First of all does, the iPod power on okay? 
    Have you tried plugging the iPod into a different USB ports, preferably a high powered USB 2.0 port on the back of your PC tower (these are directly soldered onto the motherboard and receive much high outputs of power than the ones on the front).
    What about a different USB sync cable?
    What shows up on the iPod's screen when you connect it?  Does it charge at all?  Maybe try resetting it with it still connected to your PC.  To do this, press and hold both the Select (Center) and Menu buttons together long enough for the Apple logo to appear.
    B-rock

  • Why "stop download video" feature not show when playing video

    why "stop download video" feature not show when playing video,, i hope you can give me Solution for this problem because when i using 3g internet, it downlaod the video Quickly ,,, so it consume the Balance

    Do you have Flash installed?   Check HD > Library > Internet Plug-Ins
    If the Flash Player app is not in the Internet Plug-ins folder, download and install from here.
    When you post for help, please state which OS X is installed.
    If you aren't sure, click About this Mac from your Apple menu 
    Troubleshooting advice can depend on that information.

  • SSRS pulls data from ESSBASE cube, data not showing

    Dear Experts,
    We are connecting SSRS 2012 to Essbase 11.1.3 to pull data from the cube, and having some issues with some members data not showing in the query designer and report, while some have no problem. And we couldn't find a pattern on which members won't show. We are wondering if this is a known issue and if there is a way to solve the problem.
    Thanks very much.
    Grace

    Hi ,
    Check the following:-
    1 Check whether you have made the joins properly.
    2 Check data at multiprovider level .
    3 is data available for reporting in both the cubes
    Regards
    Rahul

  • HP business inkjet 2800 Print black only option not showing in Windows 7 64 bit operating system

    HP business inkjet 2800 Print black only option not showing in Windows 7 64 bit operating system
    Please help, if any one knows any solution.

    Hi @Firoskhan,
    Welcome to the HP Forums!
    I am sorry, but to get your issue more exposure I would suggest posting it, in the commercial forums since this is a commercial product. You can do this at HP Enterprise Business Community.
    Hope this helps!  
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • My external hard drive does not show when I am trying to open a document in Office Org??

    My external hard drive does not show when I am trying to open a document in Office Org?? When looking in the about IMAC system support it shows as being connected. Any ideas??

    Does the drive show up under 'Devices' in Finder?

Maybe you are looking for

  • Condition type not appearing in Sales order

    Hi All, Iam using TAXINN, Copied ZINFAC to KINFAC, I have created JIVP and JIVC for VAT and CST, I have maintained Condition Records for JIVP and JIVC. Both these condition records are not reflecting in my sales order, i.e. the records are not coming

  • Multiple sites as an alternative to CDSSO

    We use two domains for our web sites - typically one for internal and one for external applications. We have avoided CDSSO to date by using the client SDK to process logins and cookies. The price we pay is to not have true single sign-on among all ap

  • CORBA Error from sample

    I am new to CORBA programming, I downloaded the code from http://java.sun.com/j2se/1.3/docs/guide/idl/GShome.html First start Name Service: start tnameserv -ORBInitialPort 1050 then when I run the server: start java HelloServer _ORBInitialPort 1050 I

  • After kernel update to .37 changeg the profiles in konsole

    i want to fix em ... but when i am open again konsole or yakuake the default profile is shown ... i use a custom profile ....

  • Mpeg 4 to mpeg 2 in toast 11

    Hi I have a video in iVideo and when I share it is down loaded in mpeg 4 but Toast 11 will not open it is asking for mpeg 2. Any idears? Ta.