nir_zi Report post Posted May 28, 2009 I am creating a scatter chart using an array with X sets. Let say i want to ignore the X(i) set. x(0) - plot x(1) - plot ... x(i) Share this post Link to post Share on other sites
Mangalores Report post Posted May 28, 2009 Can you not make your Javascript or server weed out which datasets should end up in the dataXML for the chart? You're making an update() anyway, right? Share this post Link to post Share on other sites
nir_zi Report post Posted May 28, 2009 The program is in VB6<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> The chart is on a simple form. I want to give the user the ability to chose any combinations of graphs out of the N' data sets. Share this post Link to post Share on other sites
Mangalores Report post Posted May 28, 2009 I resolve this kind of scenario by making a complete chart update (aka the server creates a different XML). Works quite well even for internet features. Might not be the fastest way to do it, however the only other solution I can think of is to have the JavaScript hand the XML to the FusionChart and filter it beforehand via a DOM manipulation. I don't think that's very good for big charts though. Share this post Link to post Share on other sites