Tom D Report post Posted December 19, 2007 i have an apostrophe as a seriesName and i replace it with %27 and it still says invalid xml. I use %26 for & and it works fine why is this? Share this post Link to post Share on other sites
FusionCharts Support Report post Posted December 19, 2007 hi, you need to use %26paos; . %27 is converted to ' when the XML is parsed and hence there is validation issue, where as %26apos; is converted by our chart from the XML attribute and show as ' Share this post Link to post Share on other sites
Tom D Report post Posted December 21, 2007 Thank You. Share this post Link to post Share on other sites
bkark Report post Posted June 25, 2008 I've tried to use %26paos; for series and category names on a stacked bar 2D chart to output an apostrophe but it still isn't working. The chart just displays %26paos;. Here's what I have in my PHP code: $FC->addCategory("%26paos;"); Any ideas? Don't know if it matters but I'm using the free version of FusionCharts. Share this post Link to post Share on other sites
Arindam Report post Posted June 26, 2008 (edited) Hi bkark, Could you please set default ParamDelimiter ";" to ":" or other delimiter. After that use addCategory("%26apos;"). Please see the code $FC->setParamDelimiter(":"); $FC->addCategory("%26apos;"); $FC->setParamDelimiter(";"); Edited June 26, 2008 by Guest Share this post Link to post Share on other sites
FusionCharts Support Report post Posted June 26, 2008 Hi, I apologize for the typo... it would be %26apos; Share this post Link to post Share on other sites