Webdreams
Members-
Content count
5 -
Joined
-
Last visited
Everything posted by Webdreams
-
Is Fusion Charts Can Be Used In C# Windows Application?
Webdreams replied to karadogan's topic in FusionCharts and ASP.NET
What code do you need, exactly? Charts module is too large, I cant´t paste all. Thank You. -
Is Fusion Charts Can Be Used In C# Windows Application?
Webdreams replied to karadogan's topic in FusionCharts and ASP.NET
Sorry but it has connection with data base that it doesnt´ work to you. I can paste the code that you want. -
Is Fusion Charts Can Be Used In C# Windows Application?
Webdreams replied to karadogan's topic in FusionCharts and ASP.NET
Hi, I have Flash Player's Global Security configured but the export doesn´t works. It seems a problem with the event in wich de code is called. -
Is Fusion Charts Can Be Used In C# Windows Application?
Webdreams replied to karadogan's topic in FusionCharts and ASP.NET
Thank you for the reply. In my app, FusionChartsExportComponent.js is in the same folder than charts. I dont't have a reference of it in my code. I'm running in a local file system. I read the link and I execute FlashSecuritySetup.bat in my charts' folder. This is the code in my .vb: Private Sub AxShockwaveFlash1_FlashCall(ByVal sender As System.Object, ByVal e As AxShockwaveFlashObjects._IShockwaveFlashEvents_FlashCallEvent) Handles AxShockwaveFlash1.FlashCall 'AxShockwaveFlash1 If e.request.Contains("FC_ExportDataReady") Then Dim EC As New FusionCharts.ExportComponent() PictureBox1.Image = EC.GetExportedImage(e.request) End If End Sub This Event is used when I draw the chart but then "FC_ExportDataReady" is not contained in the request. The event is not used anymore. Thank You -
Is Fusion Charts Can Be Used In C# Windows Application?
Webdreams replied to karadogan's topic in FusionCharts and ASP.NET
I'm doing an applicattion too. I use Fusion Charts to make the charts but I have a problem at the time to export. If I do right button in the chart and select "save as jpeg" the progress bar appear but the image is not save. I've checked the FlashSecuritySetup and I execute de .bat in my charts folder. If I put the code to show the image in a picturebox that is in the documentation in the event FlashCall of my AxShockwaveFlash it didn´t works. ¿Can you explain me how can it fixed it? Than You.