danut

ScrollColumn2D max items

Recommended Posts

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

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

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 by danut

Share this post


Link to post
Share on other sites

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now