Scott_jb Report post Posted November 28, 2011 Im using FusionCharts XT v3.2.2 Trial. Im trying to set the transparency for the background. In there documentation it shows on the code behind 'FusionCharts.RenderChart("../FusionCharts/Column3D.swf", "", strXML.ToSrting(), "myNext", "600", "300", False, True, True)'. But when I look at the RenderChart function, there is only one function and does not have a third boolean paramater to specify transparency. There is only one function. Thank you in advance. Share this post Link to post Share on other sites
Guest Angshu Report post Posted November 29, 2011 Hi, Welcome to FusionCharts Forum! RenderChart/RenderChartHTML method takes various arguments including bgColor. The list of arguments is same for both the methods. Please check the list of parameters or arguments from : http://docs.fusioncharts.com/charts/contents/guide-for-web-developers/csnet/CS_BasicExample.html#jsxmlurl Hope this helps. Share this post Link to post Share on other sites
Scott_jb Report post Posted November 29, 2011 How do you pass the aditional paramaters? when I go look at the RenderChart function source I see this Public Shared Function RenderChart(ByVal chartSWF As String, ByVal strURL As String, ByVal strXML As String, ByVal chartId As String, ByVal chartWidth As String, ByVal chartHeight As String, ByVal debugMode As Boolean, ByVal registerWithJS As Boolean) As String Dim builder As StringBuilder = New StringBuilder builder.AppendFormat(("<div id='{0}Div' align='center'>" & Environment.NewLine), chartId) builder.Append(("Chart." & Environment.NewLine)) builder.Append(("</div>" & Environment.NewLine)) builder.Append(("<script type=""text/javascript"">" & Environment.NewLine)) builder.AppendFormat(("var chart_{0} = new FusionCharts(""{1}"", ""{0}"", ""{2}"", ""{3}"", ""{4}"", ""{5}"");" & Environment.NewLine), chartId, chartSWF, chartWidth, chartHeight, boolToNum(debugMode), boolToNum(registerWithJS)) If (strXML.Length = 0) Then builder.AppendFormat(("chart_{0}.setDataURL(""{1}"");" & Environment.NewLine), chartId, strURL) Else builder.AppendFormat(("chart_{0}.setDataXML(""{1}"");" & Environment.NewLine), chartId, strXML) End If builder.AppendFormat(("chart_{0}.render(""{1}Div"");" & Environment.NewLine), chartId, chartId) builder.Append(("</script>" & Environment.NewLine)) Return builder.ToString End Function There is no parameters after registerWithJS. Hi, Welcome to FusionCharts Forum! RenderChart/RenderChartHTML method takes various arguments including bgColor. The list of arguments is same for both the methods. Please check the list of parameters or arguments from : http://docs.fusionch...e.html#jsxmlurl Hope this helps. Share this post Link to post Share on other sites