Rahul44 Report post Posted July 31, 2012 (edited) hi, I have values comming from database i would like to know if there is a way with fusion chart not to plot values if its 0, if not is it possible to add a javascript or xml if statement within a datatset? thank you for the help in advance.. Rahul Edited July 31, 2012 by Rahul44 Share this post Link to post Share on other sites
Guest Sumedh Report post Posted August 1, 2012 Hi, You would have to insert a "if condition statement" to skip the "0" values while generating the XML from database. Ref. code: While(Read data from recordset.) { if(recordset.column ! = 0) ---------------------- (check if the database column has 0 value else generate the XML) { then generate the XML } } Share this post Link to post Share on other sites
Rahul44 Report post Posted August 1, 2012 Thank You Hi, You would have to insert a "if condition statement" to skip the "0" values while generating the XML from database. Ref. code: While(Read data from recordset.) { if(recordset.column ! = 0) ---------------------- (check if the database column has 0 value else generate the XML) { then generate the XML } } Share this post Link to post Share on other sites