Scott K Report post Posted January 11, 2007 Is there a way to hide or obfuscate the XML data sent down to the browser? I have a client who would like to protect the data being charted. Right now a saavy individual could "View Source" and extract all the data from the chart. Share this post Link to post Share on other sites
Pallav Report post Posted January 11, 2007 What you can do is: Load the chart initially without any data (like in few of our blueprint charts) Use AJAX to load the XML data from server on-demand Provide this data to chart at client side. This way, the XML data is never exposed to end user and you can build your authentication wrappers around data retrieval too. Share this post Link to post Share on other sites
confucion Report post Posted January 19, 2008 Is there any sample code on how to achieve this data protection layer? Share this post Link to post Share on other sites
Pallav Report post Posted January 24, 2008 While we do not have an exact data protection layer implementation, we've the AJAX method being used in our open source blueprint application at http://www.fusioncharts.com/demos/Blueprint, which can be downloaded from www.fusioncharts.com/Download.asp Share this post Link to post Share on other sites