Sign in to follow this  
dbasix

Chart not updating with changes in showVlaues and showName

Recommended Posts

Hi,

 

 

 

I am using Fusion charts to display charts in Flash.I have used AS (Flex) to integrate it.

 

The XML required by the FCData() is generated dynamically and added.The XML is as below:

 


dpXML =

<chart XAxisName="" palette="1" animation="1" formatNumberScale="0" numberPrefix="" seriesNameInToolTip="" showValues="0" showNames="0">

 <categories>

   <category label="CreditCard1"/>

   <category label="CreditCard2"/>

   <category label="BOM_RecurringDeposit3"/>

   <category label="FixedDeposit4"/>

   <category label="HomeLoan5"/>

   <category label="BOM_RecurringDeposit6"/>

   <category label="HomeLoan7"/>

   <category label="CarLoan8"/>

   <category label="FixedDeposit9"/>

 </categories>

 <dataset>

   <set value="21"/>

   <set value="19"/>

   <set value="11"/>

   <set value="6"/>

   <set value="5"/>

   <set value="5"/>

   <set value="4"/>

   <set value="4"/>

   <set value="3"/>

 </dataset>

</chart>

 

The chart always displays the values and name even if I set showValues="0" and showNames="0".

 

I am also calling below methods.

 

 

 

_fusionChart.FCData(new XML());

 

_fusionChart.FCData(dpXML);

 

_fusionChart.FCRender();

 

 

 

Let me know if I am missing anyting !!

 

 

 

Thanks

 

Pramay

Edited by Guest

Share this post


Link to post
Share on other sites

Hi,

 

 

 

If possible, could you please provide us with the entire code.

 

 

 

Looking forward to your reply.

 

 

 

Thanks.

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
Sign in to follow this