wnuzum

Members
  • Content count

    2
  • Joined

  • Last visited

About wnuzum

  • Rank
    Forum Newbie
  1. Hi, We've been using the 3D pie chart for some time, however recently the values of the items in the chart are getting very distant from each other. When the chart displays, it is showing one element that should be 0% of the pie and not visible as taking up about 1/4 of the display space (see attached). The XML for the chart is: <chart animation="1" YAxisName="2011" showValues="0" showNames="0" numberPrefix="$" formatNumberScale="0" showPercentageValues="1" decimalPrecision="0" pieFillAlpha="100" pieRadius="100" pieSliceDepth="25" bgColor="ffffff" showAboutMenuItem="0" showZeroPies="1" borderAlpha="0"> <set name="Item A" value="1451530555.92" color="66cc00"/> <set name="Item B" value="56408273776.83" color="ff6600"/> <set name="Item C" value="21849962013.57" color="CCCCCC"/> <set name="Item D" value="8629518666.85" color="000000"/> <set name="Item E" value="375492037.64" color="FFFF00"/> <set name="Item F" value="46805288.70" color="FF99CC"/> <set name="Item G" value="0.00" color="3333FF"/> <set name="Item H" value="2583334647.45" color="FF0000"/> <set name="Item I" value="2426817850.72" color="990033"/> <set name="Item J" value="97349228167.39" color="3366CC"/> <set name="Other" value="3581.18" color="FF0099"/> </chart> the 'other' set above is what shows as nearly 1/4 of the pie, but correctly shows 0% when hovered over. If the 'other' set is removed, the pie displays correctly. The pink section in the attached image is the 'other' set, and should show as 0 or next to nothing in the pie. The blue section to the left of it should be approx 51% of the pie, but is obviously showing less. Is this a bug/rounding issue? Thanks! -Will
  2. Hi, I have a multi-series line chart w/ Dates as the X-axis and dollar amounts as the Y-axis (tracking 3 different lines) and would like to format the XML using XSL for easier error-checking/reading/accessibility. The problem is, I would like to format it in a table w/ each row containing one date, and one dollar amount from each of the three dollar groups. (e.g. top table headers of 'Date', 'amt A', 'amt B', and 'amt C', w/ each row flowing accordingly) Any suggestions on how to do this would be appreciated. Thanks! -Will Here is a sample of the XML: <chart caption='Values by Date' yAxisName="Dollar"> <categories> <category label="08/21/2009"/> <category label="08/22/2009"/> <category label="08/23/2009"/> <category label="08/24/2009"/> </categories> <dataset seriesName="Debt Subject to Limit" color="66cc00" lineThickness='4'> <set value="11223"/> <set value="11226"/> <set value="11234"/> <set value="11225"/> </dataset> <dataset seriesName="Public Debt Outstanding" color="3366cc" lineThickness='4'> <set value="11284"/> <set value="11286"/> <set value="11293"/> <set value="11285"/> </dataset> <dataset seriesName="Limit*" color="ff6600" lineThickness='4'> <set value="12104"/> <set value="12104"/> <set value="12104"/> <set value="12104"/> </dataset> </chart>