chriskellerx10
-
Content count
7 -
Joined
-
Last visited
Posts posted by chriskellerx10
-
-
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.
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.
-
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.
-
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?
-
Hi again!
when I add an update panel to the page...my chart doesn't display any more. I just get the text: 'Chart.' when the chart is rendered inside the panel and nothing at all when I place it outside of the panel.
Any help would be appreciated.
-
It turned out to be the way I was referencing the paths to the files. I was using "/../fusioncharts/filename" or "../fusioncharts/filename".
I ended up doing this: "fusioncharts/filename" and it took care of my problem.
Thanks
-
Hi all! I have been working with a chart in VS 2008...and when I debug and run on my computer everything is fine.
I published the site on Server 2008 running IIS 7 as the web server and everything else but the chart renders on the page. I checked the HTML source and the XML for the chart is there...its just not showing.
Any help would be appreciated!
Chart not showing on server...again
in FusionCharts and ASP
Posted · Report reply
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