al404 Report post Posted January 7, 2013 hi i'm new and evalueting those library to draw some 3D chart is not really clear to me if is someway possible to customize chart colors, and graphic i also need to create an image of this chart to save on server, is it possible to make a PHP script that outputs an image? Thanks Share this post Link to post Share on other sites
Guest Chaitra Report post Posted January 8, 2013 (edited) Hello! Welcome to FusionCharts Forum! Yes, cutomization of chart colors and other graphics is possible for both 3D and 2D charts. You could use palettes for this purpose. Ref. Code: <chart .. palette='4'> .. </chart> For more information on the same, please refer to the following link. http://docs.fusionch...rtPalettes.html If you wish to change the color of data plots, you could use the "color" attribute in the <set> element. Ref Code: <chart ..> <set label='Jan' value='335500' color='FFF345' /> <set label='Feb' value='380090' color='456478' /> .. <\chart> For more information on the same, please refer to the following link. http://docs.fusionch...c/DataPlot.html To know about customization of chart properties, please refer to the "Quick Chart Configuration" section of the following link. http://docs.fusioncharts.com/charts/ In FusionCharts, you could export your charts as images, PDFs, and also choose whether to export at client-side or server-side. The export process, when using Server-side Export Handlers, can be visualized under: Trigger, Capture, Process and Callback. You can do this procedure using PHP. For more information on the same, please refer to the following link. http://docs.fusionch...ServerSave.html Hope this helps! Edited January 8, 2013 by Chaitra Share this post Link to post Share on other sites
al404 Report post Posted January 8, 2013 In FusionCharts, you could export your charts as images, PDFs, and also choose whether to export at client-side or server-side. The export process, when using Server-side Export Handlers, can be visualized under: Trigger, Capture, Process and Callback. You can do this procedure using PHP. For more information on the same, please refer to the following link. http://docs.fusionch...ServerSave.html Hope this helps! Ok but here i'm stuck i found a couple of example where is possible to export images on server with a button or contextual menu but what i need is to get an image of my graph on server without loading the page, or opening the page with fopen via PHP i only need graph images to embed later Share this post Link to post Share on other sites
Swarnam Report post Posted January 29, 2013 Hey, Please refer to the following Forum post: http://forum.fusioncharts.com/topic/11924-export-to-pdf/ Share this post Link to post Share on other sites