|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 3/5/2008 5:00:25 PM
Posts: 9,
Visits: 42
|
|
Hi, i'm kinda new and i'm tryin' to use a chart in a website made in C# (VS.NET 2005 Professional). I read the docs and searched the net but i can't get FusionCharts movin'. I upload the .dll, .swf and the .js to the project, I modified the .aspx just like the first basic example and upgraded the Flash Player but I still get a white page.
Here's a pic of the solution tree:

and the code of the Default.aspx:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Import Namespace="InfoSoftGlobal" %>
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml" >
head runat="server">
title>Ejemplo FusionCharts/title>
/head>
body>
<%
//Create the chart - Column 3D Chart with data from Data/Data.xml
Response.Write(FusionCharts.RenderChartHTML("../FusionCharts/Column3D.swf", "../Data/Data.xml", "", "myFirst", "600", "300", false));
%>
/body>
/html>
I haven't added any other code since I'm still tryin' to make the first basic example. Hope you can help me to find out what I'm missin'
PS: I erased some of the < symbols cause the [ code ] [ /code] IFCode didn't work...
|
|
|
|
|
Supreme Being
      
Group: Moderators
Last Login: Today @ 4:23:50 AM
Posts: 738,
Visits: 1,187
|
|
| Hi, IT seem that there is a problem in the path you are using : ../FusionCharts/Column3D.swf ../Data/Data.xml
According to your snaphot of the Folder structure, these must be :
FusionCharts/Column3D.swf Data/Data.xml
Regards,
Sudipto Choudhury FusionCharts Team
|
|
|
|
|
Supreme Being
      
Group: Moderators
Last Login: Today @ 4:23:50 AM
Posts: 738,
Visits: 1,187
|
|
| Hi, You can upgrade to the latest minor release 3.0.5 which contain more ASP.NET 2.0 samples and a new assembly FusionCharts.dll with new features.
Regards,
Sudipto Choudhury FusionCharts Team
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 3/5/2008 5:00:25 PM
Posts: 9,
Visits: 42
|
|
I made the changes and it works, THX
|
|
|
|