Brian Maring
Members-
Content count
70 -
Joined
-
Last visited
Everything posted by Brian Maring
-
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
-
Color problem on Column3D when there are many data points
Brian Maring posted a topic in General usage
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 -
Have you guys come up with anything yet? Thanks, Brian
-
Have you guys come up with anything yet? Thanks, Brian
-
Color problem on Column3D when there are many data points
Brian Maring replied to Brian Maring's topic in General usage
Here it is, Vertical Lines XML.txt -
Color problem on Column3D when there are many data points
Brian Maring replied to Brian Maring's topic in General usage
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 -
Color problem on Column3D when there are many data points
Brian Maring replied to Brian Maring's topic in General usage
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. -
Hi, Do you have an answer for me?
-
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.
-
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
-
Convert integers to string using recursive number formatting
Brian Maring posted a topic in FusionWidgets XT
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 -
Convert integers to string using recursive number formatting
Brian Maring replied to Brian Maring's topic in FusionWidgets XT
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" -
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
-
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
-
Determine if Chart/Map/Widget has been been rendered
Brian Maring posted a topic in FusionWidgets XT
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 -
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.
-
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
-
Additional Marker Cities
Brian Maring replied to FusionCharts Support's topic in Using FusionMaps XT
Hi, Are the coordinates available for other US cities other than state capitols? Thanks, Brian -
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; ?>
-
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