saptarshi

Members
  • Content count

    357
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by saptarshi

  1. scroll graph: default scroll position to end

    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.
  2. Custom Tooltip with multi series

    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.
  3. 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.
  4. Funnel not displaying information correctly

    You are welcome.
  5. Colum 2D colors based on Value

    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.
  6. Column Color

    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.
  7. How can I show cities on a world map?

    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.
  8. printing page - map and data not showing

    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.
  9. showToolTip on Drawing Bullet

    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.
  10. X Axis Label Behavior

    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?
  11. saving images

    Hello, Great to know the problem has been solved. We are glad to help. Happy FusionCharting!
  12. Funnel not displaying information correctly

    Hello, Great, it's working now! Oh, and welcome to the forum.
  13. FusionCharts DOM 1.1b BETA Released

    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.
  14. Smashed charts in Firefox 3.0 on Mac

    Hi, We are looking into this problem. We will get back to you shortly.
  15. showToolTip on Drawing Bullet

    Hello, Could you please attach the XML your are using so that we can take a look?
  16. Chart doesn't render sometimes in Chrome

    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.
  17. Can we embed fusioncharts in external site

    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.
  18. State Maps without counties?

    Hello, Welcome to the Forum! Could you please specify which country/state map you are looking for?
  19. SplineArea gradient problem

    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.
  20. line chart in scatter XY chart?

    Hey, You are welcome. Glad to help. Keep FusionCharting!
  21. inverted y-Axis

    Hello, You found it already. But here's the link: http://www.fusioncharts.com/PCDocs/Contents/OverviewInverse.html
  22. Apply hyper link to whole chart

    Hello Ullas, Great! Happy FusionCharting.
  23. line chart in scatter XY chart?

    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.
  24. Hi, Great to hear it worked Yes. You can use this JS file for now. Glad to help.
  25. Smashed charts in Firefox 3.0 on Mac

    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.