Sign in to follow this  
analisn

what is the XML if I want to draw this kind of chart?

Recommended Posts

Hi,

 
Could you please try using this XML with Column3d.swf file?
 
<chart  plotSpacePercent='0' divLineIsDashed='1'   >

  <set value='19800' />

 <vline color='C6C6C6' dashed='1' />

  <set value='21800'  />

 <vline color='C6C6C6' dashed='1' />

  <set value='23800' />

 <vline color='C6C6C6' dashed='1' />

  <set value='29600' />

 <vline color='C6C6C6' dashed='1' />

  <set value='27600' />

 <vline color='C6C6C6' dashed='1' />

  <set value='31800' />

 <vline color='C6C6C6' dashed='1' />

  <set value='39700' />

 <vline color='C6C6C6' dashed='1' />

  <set value='37800' />

 <vline color='C6C6C6' dashed='1' />

  <set value='21900' />

 <vline color='C6C6C6' dashed='1' />

  <set value='32900' />

 <vline color='C6C6C6' dashed='1' />

  <set value='39800' />

 <vline color='C6C6C6' dashed='1' />

  <set value='17400' />

</chart>

Share this post


Link to post
Share on other sites

Hi,

 
To add label you would need to use label attribute in <set> element.
 
<chart  plotSpacePercent='0' divLineIsDashed='1'   >

  <set value='19800' label='5'  />

 <vline color='C6C6C6' dashed='1' />

  <set value='21800' label='10'  />

 <vline color='C6C6C6' dashed='1' />

  <set value='23800' label='15'  />

 <vline color='C6C6C6' dashed='1' />

  <set value='29600' label='20' />

 <vline color='C6C6C6' dashed='1' />

  <set value='27600' label='25' />

 <vline color='C6C6C6' dashed='1' />

  <set value='31800' label='30' />

 <vline color='C6C6C6' dashed='1' />

  <set value='39700' label='35'  />

 <vline color='C6C6C6' dashed='1' />

  <set value='37800' label='40'  />

 <vline color='C6C6C6' dashed='1' />

  <set value='21900' label='45'  />

 <vline color='C6C6C6' dashed='1' />

  <set value='32900' label='50' />

 <vline color='C6C6C6' dashed='1' />

  <set value='39800' label='55' />

 <vline color='C6C6C6' dashed='1' />

  <set value='17400' label='60' />

</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