Chris Coulthard Report post Posted October 14, 2010 I'm using a 'displavalue' attribute for the bar/column charts - when I have a value with a plus sign in it , the plus sign is replaced by a blank. I checked the debug display and the XML shown has the '+' replaced by a blank even though the xml set into the chart does not. any ideas? Chris Here is part of the debug <set value="3060" displayValue="3.06e 3" alpha="100" link="JavaScript:Ext.jen.ui.FusionChart.onChartClick(2,0)" /> the original is <set value="3060" displayValue="3.06e+3" alpha="100" link='JavaScript:Ext.jen.ui.FusionChart.onChartClick(2,0)'/> Share this post Link to post Share on other sites
DannyR Report post Posted October 14, 2010 Not sure. Can you post a code snip? Also, pretty sure that call into Ext won't work (but I could be wrong). Share this post Link to post Share on other sites
Sanjukta Report post Posted October 18, 2010 Hi Chris, Could you please replace the "+" sign with "%2B"? Ex: <set value="3060" displayValue="3.06e%2B3" alpha="100" link='JavaScript:Ext.jen.ui.FusionChart.onChartClick(2,0)'/> Hope this helps. Share this post Link to post Share on other sites