pjb153

Members
  • Content count

    5
  • Joined

  • Last visited

About pjb153

  • Rank
    Forum Newbie
  1. This thread has been quoted via the contact form. I also tried the upgrade link, but the emails that would be associated with the purchased are not being recognized by your system. I do have our PO that was sent to us when we purchased in April of 2010. Thanks.. any additional help would be appreciated.
  2. I sent a contact form thru the Fusion Site. I found that I downloaded the trial version of StackedBar2D.swf and it worked with 100% stacked. Of course has the evaluation tag on it. So my SWF is corrupt or not the newest version. I hope they can send me the correct swf. Anyone else have this issue? Thanks
  3. I thought maybe some of my attributes were not letting the 100Percent chart render correclty. But I used the sample bar graph code and it also does not render correct. It renders as a normal bar chart.. not filling every set all the way across. Maybe something with the flash file? Can someone try this code and see if it renders as a 100Percent stacked chart? This is the link to the sample I am trying to duplicate. Chart second row, first chart. http://www.fusioncha....asp?Stacked100 Here is my execution code.. just like in the sample but pointing to the flash file in my folder <script type="text/javascript"> var chart1 = new FusionCharts("FusionCharts/StackedBar2D.swf", "sampleChart", "550", "350", "0", "1"); chart1.setDataURL("100PStBar2D1.xml"); chart1.render("chart1div"); </script> The XML I am using is the same in the sample. Thanks...
  4. Simple And Plain Looking Stacked Chart.

    Thank you. I played around with this same method and came up with this. I still need to add a key which will contain the values and labels, but I think I will accomplish this with an asp label. Thanks again. <chart pallete='2' showValues='0' showLabels='0' stack100Percent='0' canvasbgColor='FFFFFF' showBorder='0' bgColor='FFFFFF' showLegend='0' canvasBorderColor='ffffff' showYAxisValues='0' divLineColor='FFFFFF' showAlternateVGridColor='0' plotGradientColor=''> <categories> <category /> </categories> <dataset color='806696'> <set value='40'/> </dataset> <dataset color='80b1d6'> <set value='28'/> </dataset> </chart>
  5. I am looking to create a single stacked bar for a page on my site. The data will represent past-to-current and future events. For example. A person has had events in the past (Jun 01, 2010 thru today Feb 07, 2011) and has upcoming events (Feb 08, 2011 to Jun 01, 2011) I want a simple two color stacked bar, shown horizontally (100% stacked) to represent the events. Say in the past 20 events and in the future 10 events. Here is an illustration of how I want it to look. No canvas, no line, no background. I will handle formatting and look and feel to incorporate it on my page. Labels will be x-axis and two headings. I can do asp net labels and position them if needed, if the chart will not render them the way I want. Any advice? Please see wireframe below for what I mean. Thanks