chriskellerx10

Members
  • Content count

    7
  • Joined

  • Last visited

Posts posted by chriskellerx10


  1. I posted something similar to this a while back...and my issue was that I did not reference the file correctly when calling the RenderChartHTML

     

    Thats is not the case this time unfortunately.

     

    The chart doesn't display and when I looked through the IIS log files I have this:

     

     

     

    2010-05-24 13:13:02 192.168.1.109 GET /FusionCharts/StackedColumn2D.swf - 80 (...) 404 0 2 4

     

     

     

    I know the 404 part is an error...but what do I need to change on IIS to get it to work?

     

    Thanks in advance


  2. Madhumita (1/20/2010)
    Hello,

     

     

     

    wMode stands for window mode.

     

    Window mode can be opaque/transparent/window.

     

    By default fusioncharts runs in wmode=window. In this mode, the chart/swf object is NOT part of the HTML block layout.

     

    It is equivalent to CSS position: absolute, z-index: infinite.Hence no other HTML element caan render above it.

     

     

     

    In case of wmode = opaque or transparent it is part of block layout and is equivalent to display: block

     

    and no z-index specified.

     

    The diff between opaque and transparent is that in case of opaque one cannot see HTML elements BEHIND the chart and for transparent one can see HTML elements behind the chart.

     

    settransparent(null)----> wmode: window

     

    settransparent(true)----->wmode: transparent

     

    settransparent(false)-----> wmode: opaque

     

     

     

    I hope this helps you. :D

     

     

     

    Hello...I know its been a little while on this, I got sidetracked on something else. Here is how I render the chart:

     

     

     

    litChart.Text = FusionCharts.RenderChartHTML("FusionCharts/StackedColumn3D.swf", "", xml.ToString(), "Sales", "800", "300", False)

     

     

     

    I'm sorry to seem a little daft...but I cannot figure out how to set the z-index or settransparent(true) in my code. 'litChart' is a literal control.

     

    Thanks for your help.


  3. Thank you. I checked the post and downloaded the file that was posted there and added it to my page. I am still unsure of how to set the z-order that renders the chart, since I set the text of the literal control to the chart. Also, I am not sure how to do this:

     

     

     

    if you are using: "FusionCharts.js" library just call:

     

    chart.setTransparent(true);

     

    after

     

    chart.setDataXML(yourXml);

     

     

     

    in the code behind.

     

    Thanks for your help.


  4. Thank you. I am using a literal control and I was setting the text with renderchart instead of rendercharthtml. I am still unsure of the difference between the two.

     

    But...the chart now shows up over the top of my progresspanel. I have all of the page contents inside of a div and basically 'gray out' those contents when the progress is running.

     

    Is there a way to render the chart div inside of that parent div?