Brian Maring

Members
  • Content count

    70
  • Joined

  • Last visited

Everything posted by Brian Maring

  1. Preload maps

    Thanks Rajroop, I know how to get the pointer value from the linear gauge. However, I'm not sure how to preload a FusionMap as a jpeg. Is there anyway that I could preload client side? Thanks, Brian
  2. When I make a column3D chart with let's say 50 points it looks great! However, If I try 500, not so good. The borders mix with the bar colorsand it does not look so good. Would it be possible to eliminate all borders/spacing between columns in this case? Thanks, Brian
  3. Preload maps

    Have you guys come up with anything yet? Thanks, Brian
  4. Update map without reload

    Have you guys come up with anything yet? Thanks, Brian
  5. Color problem on Column3D when there are many data points

    Here it is, Vertical Lines XML.txt
  6. Color problem on Column3D when there are many data points

    This graph should be solid blue when increasing and solid red when decreasing. Notice how there are alternating vertical lines of lighter and darker blue within the blue regions. Is there any way to make sure that only one color of blue appears? Thanks
  7. Color problem on Column3D when there are many data points

    Thanks a lot, I've also noticed that in a 3D Column graph, the bottom of the columns are much darker than the tops. Is there a way to make the column a constant color? plotGradientColor is not a valid attribute for Column3D, but I am looking for the equivalent of plotGradientColor='' in Column2D.
  8. Update map without reload

    Hi, Do you have an answer for me?
  9. Update map without reload

    Would it be possible to have the previous chart stay on the screen until the new chart is ready? So as to skip the white loading screen.
  10. Hi, I'm making a 3D area graph using the MSCombi3D.swf file. Is there any way to assign different colors to individual data points as you can with a 2D area chart? Thanks, Brian
  11. Hi, Would it be possible to use recursive number formatting or another advanced number formatting technique to convert integer values along a horizontal gauge? I have an explicit formula for calculating the string from the integer. Thanks, Brian
  12. But is there a number formatting technique that can turn a number into a string of my choosing? How about something like: VALUE < 100 Pointer Value displays "Small" VALUE >= 100 Pointer Value displays "Big"
  13. Custom Labels for linear gauge

    Would it be possible to change move the slider using a JavaScript with an HTML button on the main page? I'd like a layout sort of like this: < Fusion Slider Slider > Text displaying current date Thanks, Brian
  14. Is it possible to develop a linear gauge where the displayed Pointer value is a month of the year corresponding to the numerical value? Could the labels along the gauge also be months instead of numbers? Thanks, Brian
  15. Hi, I was wondering if there was a way to determine with Javascript whether a particular chart/map/widget has been rendered. If I try to update a chart or map using a widget slider gauge, it causes a JavaScript error if the chart has not been rendered. Thanks, Brian
  16. Custom Labels for linear gauge

    Here's the picture. Sorry. You guys really should not make the type of upload files case sensitive. I tried to upload a .GIF file and it would not upload.
  17. Custom Labels for linear gauge

    Hi Saptarshi, I am actually going to use quite a few month-year combinations (over 100) so I can not display each individual color range label. Here's a picture describing the change that I want to make. Right now, Everything is done in integer months which are passed on to a fusion map. but I need the display on the Slider bar to be in terms of actual months. I attached a picture to make it more clear. Is there a way to pass the selected color range in javascript just like I pass the selected numerical value? Thanks, Brian
  18. Additional Marker Cities

    Hi, Are the coordinates available for other US cities other than state capitols? Thanks, Brian
  19. License not working

    Hi, I have the full developer package and have made maps work before without the Evaluation tag appearing in the top left hand corner. However, it does appear for this map. Is there some sort of problem? Thanks, Brian <? include("FusionMaps.php"); ?> <? $strXML = ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $username="*******"; $password="*******"; $database="*******"; mysql_connect(localhost,$username,$password); @mysql_select_db($database) or die( "Unable to select database"); $query="SELECT DISTINCT state FROM `entries` WHERE year = 2009 AND time != '' ORDER BY state"; $result=mysql_query($query); $num = mysql_num_rows($result); $i=0; while ($i < $num) { $state=mysql_result($result,$i,"state"); $query2="SELECT * FROM `entries` WHERE year = 2009 AND time != '' AND state='" . $state. "'"; $result2=mysql_query($query2); $num2 = mysql_num_rows($result2); $strXML .= ""; $i++; } $strXML.=""; $strXML.=""; echo renderMap("FCMap_USA.swf","","$strXML","firstMap", 650, 450,0,0); echo $strXML; ?>
  20. Image viewer

    Hi, I was different charting program and allowing users to see bigger versions of charts using the following image viewer: http://www.dynamicdrive.com/dynamicindex4/thumbnail.htm My old program used to PHP to produce an image file, but I don't think this is what fusioncharts does. Will I still be able to use this if I switch over to fusion charts? Thanks, Brian