Aaron Weier

Members
  • Content count

    16
  • Joined

  • Last visited

About Aaron Weier

  • Rank
    Junior Member
  1. Does Fusion Charts support accessibility?

    Has anyone found an answer to this question? We also need to know...
  2. Chart And Map Object Lie Above Drop Down Menus

    Hi, thanks for quick reply. I don't receive an error. The fusion objects (map and chart) sit on top of a flyout glossary panel with links to key glossary terms. So i'm looking for a fix where the fusion objects will sit behind that particular flyout when the user hovers on it. i've attached a ppt file that shows 4 images of the application. the first two images show me using FusionCharts.js and the second two show me using FusionChartWMode.js. As you'll see FusionChartsWMode only works for one of the objects. What i need is to get a map object and chart object (both using SetDataXML) to sit behind the flyout. One added issue. When using FusionChartsWMode.js a line chart does not get rendered properly (using SetDataURL call in javascript). This is also on the image. The linechart doesn't need a wmode option set because it will never cover the glossary flyout. but for whatever reason it just doesn't get rendered properly. thanks for your immediate attention to this matter!! Aaron ChartAbovePanel.zip
  3. Chart And Map Object Lie Above Drop Down Menus

    Hi All, Anyone from FusionCharts able to help with this? This is now urgent any assistance is greatly appreciated!! thanks Aaron
  4. Javascript "eating" '+'

    Hello again, it appears that i've fixed the problem by simply switching the following lines of javascript to look as follows: strURL = strURL.replace("+", "%2B"); //URLEncode it - NECESSARY. strURL = escape(strURL); Aaron
  5. Javascript "eating" '+'

    Hi All, I need to use a "+" symbol and javascript is literally eating it up. I send in the variable with the "+" symbol and when I test the variable in javascript the "+" is gone! I've tried the replace function but no help: strURL=strURL.replace("+", "%2B"); Please help!! thanks! Aaron
  6. Hi All - I'm having trouble fixing a drop down menu that ends up behind the fusion chart and fusion map object. i've seen this code but i can't get it to work properly. You see i'm not directly embedding an "swf" file i'm generating it dynamically in code behind. <div class="video"><object width="315" height="276"><param name="movie" value=" name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src=" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="315" height="276" wmode="transparent"></embed></object></div> any help is greatly appreciated!! Aaron
  7. Single Series Error Bar and Error Line Charts

    I was able to get this to work by adjusting my DataTableReader code to simply add the right number of categories and only one dataset. Unfortunately what i don't like about this, that i like about the single series Column2D and Bar2D charts, is all chart elements are the same color, a needless legend gets created, and it needs a second trip through a datatable reader to get the information. A major suggestion would be to simply add error bars to all single series charts and allow developers to turn these on and off as needed, or allow for single series charts without needing the <categories> and <dataset> tags.
  8. I need to create a single series ErrorBar2D chart and i can't seem to get it to work with XML that looks like this: <chart caption='Age Adjusted Emergency Department Visit Rates per 10K' subcaption='2002' xaxisname='Gender' showBorder='0' formatNumberScale='0' halfErrorBar='1' errorBarColor='000000' errorBarWidthPercent='50' > <set label='Female' value='45.39' link='j-updateChart-,,Female' errorValue='0.81' /> <set label='Male' value='38.02' link='j-updateChart-,,Male' errorValue='0.74' /> <set label='Total' value='41.74' link='j-updateChart-,,Total' errorValue='0.55' /> <styles> <definition> <style name='myHTMLFont' type='font' isHTML='0' /> </definition> <application> <apply toObject='DATALABELS' styles='myHTMLFont' /> </application> </styles> </chart> After looking closer at the documentation it looks like i can't create a single series ErrorBar2D chart (based on a normal Bar2D or Column2D xml model), is this correct? If so, how do i create a single series ErrorBar2D chart? So that for the above xml file I get three link columns with half error bars and a single X-Axis title called 'Gender'?!? Lastly, all my data is coming from a database which means the above generated XML is the same for many different chart types and is quite efficient. i was hoping the ErrorBar chart would follow the same model so all i'd have to do in my code is test my data for needed error bars and make an easy code adjustment. Any urgent help is greatly appreciated!! Aaron
  9. Hi All, I'm having trouble with an HTML page using javascript to create a new map of FCMap_Wisconsin.swf and having each county link to a file. This works great if i'm using my localhost web server but it doesn't work as just an HTML page. What am i missing?!? Here's my HTML code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script type="text/javascript" src="JS/FusionMaps.js"></script> <script type="text/javascript"> <!-- function LinkToProfile(CountyName) { alert(CountyName); window.open(<County PDF link>); } //--> </script> </head> <body> <div id="mapdiv" align="center"> FusionMaps. </div> <script type="text/javascript"> var map = new FusionMaps("Maps/FCMap_Wisconsin.swf", "Map1Id", "500", "500", "1", "1"); map.setDataURL("EPHT_CountyProfiles.xml"); map.render("mapdiv"); </script> </body> </html> here is a sample of my xml file: <map borderColor='FFFFFF' connectorColor='000000' fillAlpha='70' hoverColor='FFFFFF' showBevel='0'> <data> <entity id='001' link='j-LinkToProfile-Adams' /> <entity id='003' link='j-LinkToProfile-Ashland' /> <entity id='005' link='j-LinkToProfile-Barron' /> <entity id="007" link='j-LinkToProfile-Bayfield' /> </data> <styles> <definition> <style type="animation" name="animX" param="_xscale" start="0" duration="1" /> <style type="animation" name="animY" param="_yscale" start="0" duration="1" /> </definition> <application> <apply toObject="PLOT" styles="animX,animY" /> </application> </styles> </map> Any help is greatly appreciated!! Aaron
  10. "+" Not showing up in graphs

    Hi All, I need to use the plus ("+") sign in charts and it's not currently working. So i checked to see if it was a special character and it's not listed in the documentation. Any suggestions are greatly appreciated. Aaron
  11. Need to change Chart "Placeholder" color

    Yes, of course that worked! Thank you very much.
  12. Hi All, I'm trying to create a chart placeholder on the same page as a FusionMap object [so when the user clicks on the map a time series chart displays based on county clicked - which works great] but the placeholder color is white and i want it to match my background color F7E6DB. I've tried setting the bgColor and bgAlpha in my initiating code but nothing changes. I'm modeling my code after one of the vb.net samples included with the Enterprise product. aspx code: < div id="LineChartDiv" runat="server" style="background-color:#F7E6D8; border:dashed 1px green;" ><% =GetLineBarChart()%> </div> aspx.vb.code: Public Function GetLineBarChart() As String Return InfoSoftGlobal.FusionCharts.RenderChart("../Fusion/Charts/Line.swf?ChartNoDataText=Please select an element from the left to display time trends.", "", "<chart bgAlpha='100' bgColor='F7E6DB'></chart>", "LineBarChart", "400", "300", False, True) End Function see right hand side in image below.... Any help would be appreciated!! Aaron
  13. Hi All, We need to suppress data that is not null and not zero. These suppressed values are usually counts less than 5. We code the initial values as 999999 but this number skews our charts and maps. We're looking for ideas on how to test for our 999999 value or change it to something else so that we can indicate that record as being suppressed on the map and chart. Furthermore, we're looking to create an indicator on the charts (a "*" perhaps?) any thoughts are greatly appreciated!! Aaron:unsure:
  14. Rotating ErrorBar2D Chart

    Thank you for the quick response! Would you happen to know when the 'bar' version may be available or how I may be able to request the customization?
  15. Rotating ErrorBar2D Chart

    Hello, Anyone out there found a way to rotate the ErrorBar2D chart so that it's in bar style instead of column style? (Bars and error bars going horiz. instead of vertical) I need to create an error bar chart with 72 data points and having a scrollable horizontal chart isn't ideal. Would like to show it vertical instead. Thank you for your assistance! Aaron