Brian Maring

Members
  • Content count

    70
  • Joined

  • Last visited

Everything posted by Brian Maring

  1. SY axis scaling

    Have you looked into this yet?
  2. SY axis scaling

    Here is my XML As you can see, the left y axis is fine. However, the right y axis uses the has the following labels: 1,241 1,185.4, 1,129.8, 1,074.1 etc These crooked numbers look terrible! How can I make it so that both the right and left y axes have nice even labels? I also get the following warning in the debugger: ERROR: Invalid number specified in XML. FusionCharts can accept number in pure numerical form only. If your number formatting (thousand and decimal separator) is different, please specify so in XML. Also, do not add any currency symbols or other signs to the numbers. Do you know what's causing that? Thanks, Brian Right Y axis XML.txt
  3. Dashed Lines

    Here is my XML, why doesn't the line appear as dashed. I am using MSLine.swf & Version 3.1.1 Dashex_XML.txt
  4. SYAxisMinValue not working

    Attached is my XML used with MSCombiDY2D.swf. I declare SYAxisMinValue='65' However, the chart displays a secondary y-axis with a minimum value of 0. Can you help me figure this out? 2YAXIS XML.txt
  5. SYAxisMinValue not working

    Is it possible to us MSCombiDY2D.swf and not display the 2nd axis at all?
  6. PDF in new window

    Hi I'd like to give the user the option to download my chart as a PDF using the server side method. I would like to set up my page very similarly to http://www.fusioncharts.com/Demos/ExportChart/Contents/server_export.html Would it be possible to have the PDF appear in a new browser window instead of being automatically saved? Thanks, Brian
  7. How do I remove the 'base' in a Column3D chart when there are both positive and negative values? Attached is my XML. Base at 0 XML.txt
  8. Drag and drop Fusion Charts

    Is there a way to configure a fusion chart so that it can be dragged into microsoft word/excel? Thanks, Brian
  9. "Chart." Before chart loads

    When I call in the renderChart function in PHP, it creates a div with the text: "Chart." in the middle. Is there a way to customize the HTML in the div before the chart renders? Thank you, Brian
  10. Chart will not export

    Does anyone know why export as JPEG does not come up as an option when I right click on my chart? Here is my XML chart labelStep='1' animation='0' showValues='0' showPlotBorder='0' plotGradientColor='FFFFFF' showShadow='0' caption='United States Unemployment Rate' yAxisName='' formatNumberScale ='0' chartRightMargin='20' setAdaptiveYMin='1' numVisiblePlot='120' scrollToEnd='1' plotFillAlpha='100' showLegend='0' chartRightMargin='15' chartLeftMargin='15' plotSpacePercent='0' showPlotBorder='0' plotGradientColor='' plotFillAlpha='100' use3DLighting='0' decimals='1' forcedecimals='1' rotateLabels='1' canvasBgDepth='4' clickURL='JavaScript:Popup()' exportEnabled='1' exportAtClient='0' ... Thanks, Brian
  11. Only Display ToolTip for certain counties

    Thanks, That worked great!
  12. Change 3D column depth

    How do you change the depth of a clumn in Column3D.swf? Thank you
  13. Only Display ToolTip for certain counties

    Here's my XML. Currently I have toolText=' ' for counties I do not have data for. If I set toolText='' for these counties, the county name is displayed as the tooltext. I would like for there to be no toolText at all if I do not have data for the particular county. Thank you, Brian Map XML.txt
  14. Highlight Column OnMouseOver

    Have you guys looked into this yet?
  15. Only Display ToolTip for certain counties

    Have you guys looked into this yet?
  16. I am using MSCombi2D.swf to make a chart with one area series and one column series. I talwways seems as thought the area series goes on top of the column series. Is there a way to reverse this? Also, If I were to use two column series, would it be possible to have the two column for a particular category overlap instead of be side-by-side? Thanks, Brian
  17. How do you determine which series is on top?

    You do it like this...
  18. How do you determine which series is on top?

    How do you change serial order?
  19. Real time data

    Is there any way to update the data in MSCombiDY2D.swf or any other type of chart without reloading the chart? Thanks, Brian
  20. Update map without reload

    Hi, Is it possible to update a Fusion Map without showing the reload screen? I'd like to be able to either use something like the the setData() feature of Fusion Widget gauges or the the realtime features with Fusion Charts Thanks, Brian
  21. Update map without reload

    It is actually very possible to change map data without displaying the retrieving data screen. Instead of using the strURL method, I use AJAX to load the strURL and then I pass the response text to the strXML function. Now it transitions beautifully. You guys should probably add this to your documentation at some point.
  22. Real time data

    I got it working. I just needed to use setDataXML instead of setDataURL. I did not have to change my code much because I just used an AJAX function to get the results of my strURL and pass it to setDataXML. Does this work for FusionMaps as well? Thanks, Brian
  23. Automatic setting of Y max

    I'm having a similar problem. I am using FusionCharts to produce bar graphs which have both positive and negative values. The adaptive y min and y max are terrible. The data for these charts is taken from a SQL database and the same file is used for plotting several different series. Therefore, setting a y max and y min manually is not an option. I am using MSCombi2D.swf Here is my XML: Yaxis Problem XML.txt
  24. Real time data

    That looks like it will work great Rajroop. I tried following the example with my chart using the setDataURL method instead of setDataXML. And I get the "Retrieving Data" Screen during chart transititons. How do I make these go away? Thanks, Brian
  25. Preload maps

    I am using an editable linear gauge with dates on it going back several years. I have set up the gauge so that it updates a fusion map with the data corresponding to the year on the gauge. I am concerned about the rendering time when changing the data for the map. Would it be possible to save 5 or so graphs as jpegs in Javascript so that they can be loaded server side? Thanks, Brian