DWalKr

Members
  • Content count

    3
  • Joined

  • Last visited

About DWalKr

  • Rank
    Forum Newbie
  1. Hi, is it possible to set the background for a transparent chart during the export? and if yes, how? After the capture, there is a stream generated, which contains the colors of every pixel. If you put them together, you have a pretty ugly result because of the outer texts (hardly readable). So I would like to modify the FusionChartsExportComponent.js (I assume it would be the place to make the changes) so that the generated stream already contains a background color. Here is a sample from the stream as I use it to put the picture together: 'stream' => '_424;_424;_424;_424;_424;_424;_424;_424;_424;_424;_424;_38,fdfdfd_3,_5, fdfdfd_6,_2,fefefe_1,fdfdfd_4,fefefe_1,_6,fefefe_1,fdfdfd_4,fefefe_1,_2, fefefe_1,fdfdfd_4,fefefe_1,_2,fefefe_1,fdfdfd_4,fefefe_1,_274,fdfdfd_5,_8, fdfdfd_2,_3,fefefe_1,fdfdfd_4,fefefe_1,_38;_40,fdfdfd_1,_5,fdfdfd_6,_2, fdfdfd_6,_6,fdfdfd_6,_2,fdfdfd_6,_2,fdfdfd_6,_273,fdfdfd_6,_7,fdfdfd_3, _3,fdfdfd_6,_38;_ .....' the separator for the rows is ';' separator for the columns is ',' you have first the color and then the number of following pixels with this color. No color specified means the followings pixels had the background color (transparent) trying to set a custom bgColor while putting the picture together just generate a ugly picture. maybe someboy knows how I can set this bgColor before I get the stream. Thx
  2. Transparent Chart Background

    don't know if this will help: in order to make charts transparent I use the setTransparent function from FusionCharts.js the call is like: chartid.setTransparent("transparent") [where chartid is your fusionchart object];
  3. FusionCharts and Perl

    Hi, I use FusionCharts with the Catalyst framework (Perl for the controls and template toolkit to generate the xml). I wonder if there is a server side script i could use to export the charts, or if someone could be so nice and help me write one. I have only found scripts for PHP, Ruby, JSP and ASP in the download package. I'd be thankful for any Help!