• Content count

    3
  • Joined

  • Last visited

About [email protected]

  • Rank
    Forum Newbie
  1. Hi Madhumita, Thanks for your reply. This setting(min/max) is just a default and if the real data is out of this range the chart adjust automatically. This is what i need. FYI - This is the exact code, as i am using 2 axis(Primary/ Secondary axis). PYAxisMinValue='0' PYAxisMaxValue='3' SYAxisMinValue='0' SYAxisMaxValue='3' numDivLines='2' Thanks, Venkat
  2. Hi Madhumita, Thanks for your reply. Please find the attached data xml and the screen shot. I tryed to use (decimals='0') and unable to get what i need. What i need is the left Y-axis ErrorCount(Scale in image showing as 0.03, 0.06) can be zero for all the days and i need the scale to be integers and not decimals in that case. <chart bgColor='FFFDDD' showLegend='0' showValues='0' showLabels='1' labelDisplay='ROTATE' slantLabels='1' caption='Week Summary (Error Count - Missed SLA)' xAxisName='Week' PYAxisName='Error Count' SYAxisName='Missed SLA' paletteColors='FF7F00,990000'> <categories> <category label='SUN'/> <category label='MON'/> <category label='TUE'/> <category label='WED'/> <category label='THU'/> <category label='FRI'/> <category label='SAT'/> </categories> <dataset seriesname='ErrorCount'> <set value='0' toolText='(03/07/2010) - ErrorCount = 0'/> <set value='0' toolText='(03/08/2010) - ErrorCount = 0'/> <set value='0' toolText='(03/09/2010) - ErrorCount = 0'/> <set value='0' toolText='(03/10/2010) - ErrorCount = 0'/> <set value='0' toolText='(03/11/2010) - ErrorCount = 0'/> <set value='0' toolText='(03/12/2010) - ErrorCount = 0'/> <set value='0' toolText='(03/13/2010) - ErrorCount = 0'/> </dataset> <dataset seriesName='MissedSLA' parentYAxis='S'> <set value='0' toolText='(03/07/2010) - MissedSLA = 0'/> <set value='4' toolText='(03/08/2010) - MissedSLA = 4'/> <set value='0' toolText='(03/09/2010) - MissedSLA = 0'/> <set value='0' toolText='(03/10/2010) - MissedSLA = 0'/> <set value='0' toolText='(03/11/2010) - MissedSLA = 0'/> <set value='0' toolText='(03/12/2010) - MissedSLA = 0'/> <set value='0' toolText='(03/13/2010) - MissedSLA = 0'/> </dataset> </chart> Thanks, Venkat
  3. I am using a Multi-Series Dual-Y Bar/Line chart (MSColumn3DLineDY). The data on the yaxis-1 can be all nulls. Then the default numbers i see on the axis are decimals and i need them to be integers as decimals does not have a meaning there. Can you please help me how to do that. Thanks, Venkat