satyajit

Members
  • Content count

    2
  • Joined

  • Last visited

Everything posted by satyajit

  1. Below shown xml works good for two categories with Multi-series Bar 2D chart (MSBar2D.swf ) <chart caption='Business Results 2005 v 2006' xAxisName='Month' yAxisName='Revenue' showValues='0' numberPrefix='$'> <categories> <category label='Jan' /> <category label='Feb' /></categories> <dataset seriesName='2006'> <set value='27400' /> <set value='29800' /> </dataset> <dataset seriesName='2005'> <set value='10000'/> <set value='11500'/> </dataset> <trendlines> <line startValue='26000' color='91C728' displayValue='Target' showOnTop='1'/> </trendlines> <styles> <definition> <style name='CanvasAnim' type='animation' param='_xScale' start='0' duration='1' /> </definition> <application> <apply toObject='Canvas' styles='CanvasAnim' /> </application> </styles> </chart> When I edit the above XML for single category and multiple dataset values then it shows value for only one dataset value. Please suggest what needs to be done.The graph type is MSBar2D.swf <chart caption='Business Results 2005 v 2006' xAxisName='Month' xAxisNamePadding='5px' plotSpacePercent='20%' yAxisName='Revenue' showValues='0' numberPrefix='$'> <categories> <category label='Jan' /> </categories> <dataset seriesName='2006'> <set value='27400' /> </dataset> <dataset seriesName='2005'> <set value='10000'/> </dataset> <trendlines> <line startValue='26000' color='91C728' displayValue='Target' showOnTop='1'/> </trendlines> <styles> <definition> <style name='CanvasAnim' type='animation' param='_xScale' start='0' duration='1' /> </definition> <application> <apply toObject='Canvas' styles='CanvasAnim' /> </application> </styles> </chart>
  2. Single Category Multiple Datasets With Msbar2D.swf

    Thanks a lot. I have replaced the js file with the one downloaded from the above mentioned URL. It is working great. Once again Thank You