cuno Report post Posted December 28, 2010 I've created a scatter chart (works like a charm) except for the last part of the chart which is too wide although there's no data for that part. Any suggestions what may cause this effect? Kind Regards, cuno Share this post Link to post Share on other sites
Guest Angie Report post Posted December 28, 2010 Hi, Welcome to FusionCharts Forum! Could you please send us the code to look into the issue? Awaiting for your reply. Share this post Link to post Share on other sites
cuno Report post Posted December 28, 2010 Sure! Thanks for the lightning fast reply! I use the dataxml method. Already tried to change the width in the object properties. That only forced the chart to scale down. I pasted the xml in the attached xml-file. The object tag is described below <object width="800" height="400" data="./FusionCharts/Charts/Scatter.swf" type="application/x-shockwave-flash"><param name="name" value="graph" /> <param name="flashvars" value="dataXML=[This is the xml part (string) as attached in this reply]&debugMode=0" /> <param name="src" value="Scatter.swf" /> <param name="quality" value="high" /> </object> test.xml Share this post Link to post Share on other sites
Guest Angie Report post Posted December 28, 2010 (edited) Hi, Welcome again to FusionCharts Forum! This is happening because the x value in the <dataset> element is bigger than <xAxisMinValue> mentioned in the <chart> element of the XML document. You need to explicitly declare the <xAxisMinValue>. Hope this helps. Edited December 28, 2010 by Angie Share this post Link to post Share on other sites
cuno Report post Posted December 28, 2010 Hi Angie, Thanks, that helped! I think you mean xAxisMaxValue. After setting this to the highest category value of the x-axis everything works perfectly! Cuno Hi, Welcome again to FusionCharts Forum! This is happening because the x value in the <dataset> element is bigger than <xAxisMinValue> mentioned in the <chart> element of the XML document. You need to explicitly declare the <xAxisMinValue>. Hope this helps. Share this post Link to post Share on other sites
Guest Angie Report post Posted December 28, 2010 Hi , That was a little mistake! Anyways, I am glad to know that you issue has been resolved. Keep FusionCharting! Share this post Link to post Share on other sites