analisn Report post Posted March 5, 2009 I don't know how to set the attr of X labels?how can I draw this kind of chart? Best Regards Share this post Link to post Share on other sites
Rahul Kumar Report post Posted March 5, 2009 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
analisn Report post Posted March 5, 2009 Thanks very much. But what about the X labels? Share this post Link to post Share on other sites
Rahul Kumar Report post Posted March 6, 2009 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