danut Report post Posted November 13, 2013 Hi, I'm using the ScrollColumn2D chart that needs to display 460 items (bar charts). So far I was able to display only 445 such columns, but if I try to display all of them the "Invalid XML data" message appears. Do you know if there is a limitation regarding the number of maximum items that this chart supports? If yes, can you please give a solution! The XML looks similar to this one: <chart> <categories> <category label="A1"/> ... </categories> <dataset seriesName="Sum"> <set value="0.21" link="S-A1;_warning" toolText="Name: A1 PM status: Warning" color="0xFFFF00"/> ... </dataset> </chart> Thanks, Danut Share this post Link to post Share on other sites
Guest Rishab Report post Posted November 14, 2013 Hi,If you get an "Invalid Data." message, it means that the XML/JSON data is malformed.Please ensure of the following in your data plots: -Missing closing tag for any element. -If you've double quotes as part of your data,Encode them to " Example: <set label='John says "Hi" to all.' /> -If you've single quotes as part of your data, Encode them to ' Example: <set label='John' house' />If still the issue persists, please provide me the data XML or a live URL that may help me to replicate the issue at my end?Awaiting response. Share this post Link to post Share on other sites
danut Report post Posted November 15, 2013 (edited) Hi, If you get an "Invalid Data." message, it means that the XML/JSON data is malformed. Please ensure of the following in your data plots: -Missing closing tag for any element. -If you've double quotes as part of your data,Encode them to " Example: <set label='John says "Hi" to all.' /> -If you've single quotes as part of your data, Encode them to ' Example: <set label='John' house' /> If still the issue persists, please provide me the data XML or a live URL that may help me to replicate the issue at my end? Awaiting response. Hi, I think that this issue is generated by the XML string beeing to long. If I remove the "color" property then I can see the information for all the machines. Thank you for your help! Danut Edited November 15, 2013 by danut Share this post Link to post Share on other sites
Guest Rishab Report post Posted November 18, 2013 (edited) Glad to know your issue has been resolved. Edited November 18, 2013 by Rishab Share this post Link to post Share on other sites
Swarnam Report post Posted November 18, 2013 Hey, "color" attribute accepts hex color codes without #. Can you try the below format and let us know if your issue has been resolved? <set value="0.21" link="S-A1;_warning" toolText="Name: A1 PM status: Warning" color="FFFF00"/> Share this post Link to post Share on other sites