Sign in to follow this  
Guest Madhumita

Displaying multiple charts - HBullet.swf

Recommended Posts

Is it possible to put 2 charts in the XML file as below to place 2 charts on the screen? We are using a case tool called CaGen and on the window we place a Flash ocx. We set the "movie" property of the OCX to HBullet.swf and the "dataURL" to the XML file. Then we invoke "Rewind" and "Play" methods to display the ocx on the screen, so the only place to put multiple charts is the XML file. Is this possible? If not, any ideas how we can achieve this??

<chart lowerLimit='0' upperLimit='100' caption='Revenue' subcaption='US $ (1,000s)' numberPrefix='$' numberSuffix='K' showValue='1' >

<colorRange>

  <color minValue='0' maxValue='50' color='A6A6A6'/>

  <color minValue='50' maxValue='75' color='CCCCCC'/>

  <color minValue='75' maxValue='100' color='E1E1E1'/>

</colorRange>

<value>78.9</value>

<target>80</target>

</chart>

<chart lowerLimit='0' upperLimit='100' caption='Revenue' subcaption='US $ (1,000s)' numberPrefix='$' numberSuffix='K' showValue='1' >

<colorRange>

  <color minValue='0' maxValue='50' color='A6A6A6'/>

  <color minValue='50' maxValue='75' color='CCCCCC'/>

  <color minValue='75' maxValue='100' color='E1E1E1'/>

</colorRange>

<value>78.9</value>

<target>80</target>

</chart>

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