
saptarshi
Members-
Content count
357 -
Joined
-
Last visited
-
Days Won
1
Everything posted by saptarshi
-
Hello Hemant, Welcome to the forum. Could you please try setting the scrollToEnd='1/0' attribute in the chart element to 1? Hope this helps.
-
Hello, If you wish to show only the Category name could you please try setting the toolText='text string' attribute in the label set element? An example XML-snippet is given below: <dataset seriesName='1996' color='AFD8F8' showValues='0'> <set value='25601.34' toolText='Austria'/> <set value='20148.82' toolText='Brazil'/> <set value='17372.76' toolText='France' /> <set value='35407.15' toolText='Germany' /> </dataset> <dataset seriesName='1997' color='F6BD0F' showValues='0'> <set value='57401.85' toolText='Austria' /> <set value='41941.19' toolText='Brazil' /> <set value='45263.37' toolText='France' /> <set value='117320.16' toolText='Germany' /> </dataset> Hope this helps.
-
Hot to make the XZWall ,YZWall and XYWall transparent in the MSCombi3D.swf module?
saptarshi replied to saptarshi's topic in General usage
Hello, I am afraid, it is not possible to change the transparency of the XY, YZ and the ZX planes in a 3D chart in FusionCharts v3. But we have noted your suggestion and put it on our wishlist for the next version. -
Funnel not displaying information correctly
saptarshi replied to cj_charts's topic in Using FusionWidgets XT
You are welcome. -
Hello, Welcome to the forum. I am afraid FusionCharts does not have a way to automatically set colors for data elements above/below a target value. However, this can be done programmatically to create the required XML. Hope this helps.
-
Hello, You can use the 'color' attribute in the 'set' element to set any color to your individual columns in a column 2D chart as follows: If you want to define your own colors for the data items on chart, use this attribute to specify color for the data item. This attribute accepts hex color codes without #. An example of the required XML is given below: <chart caption='Monthly Revenue' xAxisName='Month' yAxisName='Revenue' numberPrefix='$' showValues='0'> <set label='Jan' value='420000' color='FFF000' /> <set label='Feb' value='910000' color='FFF000' /> <set label='Mar' value='720000' color='FFF000' /> Hope this helps.
-
Hello, First of all, welcome to the forum! You can easily get maps that are custom made to your requirement. For more details about how to place an order for a custom map, visit this link: http://www.fusioncharts.com/maps/Custom.asp Hope this helps.
-
printing page - map and data not showing
saptarshi replied to duckndive's topic in Using FusionMaps XT
Hello, Could you please try removing one line of code from the wrapper div and see if things work? var map = new FusionMaps("maps/C_FCMap_NorthAmerica.swf", "map1Id", 708.75, 405, "0", "1"); map.setDataURL("xml.php?id=NA"); //map.addParam("WMode", "Transparent"); map.render("mapDiv"); Hope this helps. -
Hello, We checked the XML you have sent and it seems to work on our computers. If this XML does not work on your chart, you can try two things: 1. Go to http://www.fusioncharts.com/PUC/ and see if you have the updated version of FusionWidgets. 2. In case you are already using the updated version, could you please check if you are using a duplicate attribute of showToolTip which is set to one? Hope this helps.
-
Hello, We tested your example and it seems to work fine in our lab. Could you please attach the XML you are using so that we can take a look at what might be causing the problem?
-
Hello, Great to know the problem has been solved. We are glad to help. Happy FusionCharting!
-
Funnel not displaying information correctly
saptarshi replied to cj_charts's topic in Using FusionWidgets XT
Hello, Great, it's working now! Oh, and welcome to the forum. -
Hello, Thank you for sharing your problem on the forum. It would be of great help if you could please attach a sample of your code, so that we can try to recreate the situation/error in our lab.
-
Hi, We are looking into this problem. We will get back to you shortly.
-
Hello, Could you please attach the XML your are using so that we can take a look?
-
Hello, Currently, we've found an issue with FusionCharts for Chrome in rendering Flash movies (charts) with lots of ActionScript involved. We're fixing it. Meanwhile, you may develop your application with Firefox, Safari, IE and once we release the updated version - it will work in Chrome too.
-
Can we embed fusioncharts in external site
saptarshi replied to ullasjos's topic in FusionCharts and PHP
Hello, Could you try using an iframe to embed FusionCharts in a client/external site? Currently this is the only way to embed charts in an external website. Hope this helps. -
Hello, Welcome to the Forum! Could you please specify which country/state map you are looking for?
-
Hello, Welcome to the Forum. We are happy to know you liked FusionCharts. Could you please try tuning your data plot area's look and feel by adjusting the following attributes of the chart element? plotFillAngle='0-360' (sets the angle of the gradient) plotFillRatio='0-100' (sets the ratio of the colors e.g. 80,20 or 30,70) plotFillAlpha='0-100' (sets the transparency for your gradient) plotGradientColor='hex color code without the '#' (Sets the color of the gradient) For more details you can check out the link below: http://www.fusioncharts.com/PCDocs/Contents/ChartSS/SplineArea.html#Anchor4 Hope this helps.
-
Hey, You are welcome. Glad to help. Keep FusionCharting!
-
Hello, You found it already. But here's the link: http://www.fusioncharts.com/PCDocs/Contents/OverviewInverse.html
-
Hello Ullas, Great! Happy FusionCharting.
-
Hello, It is possible to have a line in an XY chart. Here is how: 1. Create a dataset that will define the line. 2. Now, set the drawLine='1' in the dataset element. 3. Then, set the transparencies of the anchors of this data series to zero by setting anchorAlpha='0' You can also go through the example below to see how this can be done: <dataset seriesName='Mean' color='009900' anchorSides='3' anchorRadius='4' anchorBgColor='D5FFD5' anchorBorderColor='009900' drawLine='1' anchorAlpha='0'> <set y='2.4' x='21' /> <set y='3.5' x='32' /> <set y='2.5' x='43' /> <set y='4.1' x='48' /> <set y='3.5' x='50' /> <set y='4.6' x='56' /> <set y='4.8' x='59' /> <set y='4.9' x='73' /> <set y='4.6' x='89' /> <set y='4.2' x='93' /> </dataset> Hope this helps you with your research work.
-
FC v3.1 100% width, not working when created dynamically
saptarshi replied to saptarshi's topic in Bug Reports
Hi, Great to hear it worked Yes. You can use this JS file for now. Glad to help. -
Hello, In case you are using percentage width for specifying the chart width, could you please try setting a fixed height and width for the <div> in which the chart is placed? Hope this works.