Rahul Kumar

L1 Moderators
  • Content count

    1,253
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Rahul Kumar

  1. trendlines with "steps"

    Hi, I am afraid, It is not possible as of now.
  2. Enable image saving while using dataXML method

    Hi, Could you please try the attached code? That might fulfill your need. FusionCharts_SaveAsImage.zip
  3. ZeroPlane splitting at other value than 0 ?

    Hi, I am afraid, it is not possible as of now.
  4. Using FusionCharts with VB.NET on Windows Forms

    Hi, Could you please make sure that you are using FC.SetVariable("registerWithJS", "1") before calling FC.CallFunction(FlashCall("setDataXML", args))?
  5. Vertical moving line in chart

    Hi, I am afraid it is not possible as of now.
  6. Fail to load chart from DLL

    Hi, It seems that flash player does not support res:// protocol, thats why it fails to show the chart.
  7. Enable image saving while using dataXML method

    Hi, Saving FusionCharts as image is not very hard if you are using it in Application. If you could tell us in which language you are using it, it will be very helpful for us to resolve your issue. However if it is in WinForm then you can create your own image saving function by using some API call & also using this you can also call the Saving Dialog box.
  8. Use Full name not ID

    Hi, You can define custom entity id in XML it self, could you please read http://www.fusioncharts.com/maps/docs/Contents/CustomID.html for more information.
  9. Using the character '+' in chart labels

    Hi, In that case please use %252B instead of %2B, because %2B is parsed as + by the chart and send it to the browser, then browser treat it as just a + symbol.
  10. Hi, Could you please try numVisiblePlot ='xx' attribute. Where xx is the number of data plots that would appear in the visible area of the scroll pane.
  11. Hi, You can use renderAs='Line' attribute in each dataset element to which you want to render line graph in MSCombiDY2D.swf chart.
  12. FusionWidgets background transparency

    Hi, Could you please download our new FusionCharts.js (ver 1.2 nov.). You can have this by downloading the latest evaluation package or updating the licensed package.
  13. FusionWidgets background transparency

    Hi, Could you please use chartObj.setTransparent(true) in javascript, and set the attribute bgAlpha='0,0'.
  14. Image Saving bug

    Hi, This is the problem with Internet Explorer. We have developed a fix, and will update in the next minor release very soon. There you would need to provide J- instead of JavaScript:.
  15. Error in loading data...

    Hi!, Could you please use var strURL = "Data_prgXmssisfol.php?year=" + year + "&ms=" + ms ; Insted of var strURL = "Data_prgXmssisfol.php?year=" + year + "&ms="" + ms + """ ; Please provide us the code for Data_prgXmssisfol.php so that we can help you in more details.
  16. Hi, Could you please confirm that the Web page/Web Application where you are rendering the chart is located in Coding folder? If so, then the path is correct.You might try FusionCharts/... in any case if you are putting the main file in Nashgraph folder.
  17. Hi, The difference between renderChart and renderChartHTML is that, renderChart embeds JavaScript tag which calls the FusionCharts method that is in FusionCharts.js. By using the JavaScript you don't get the message "click to activate" if used in IE. Where as renderChartHTML just embeded the Charts using the <Object> tag. Both methods are defined in the FusionCharts.php file, but one requires the FusionCharts.js. Problem in your loop was that it was creating category & dataset element for each records.
  18. Hi! Bender, There was a problem in the while loop. Please see the modified file in the attachment. Could you please check your path for "FusionCharts.js"? So that you can use renderChart function. php_file.php.txt
  19. how to Extract Graphics from a PDF

    Hi, I am afraid we could not give you the software name, but you could use Google search for that.
  20. Hi Bender, Could you please send us your directory structure? And could you try renderChartHTML insted of renderChart just to ensure that everything is OK? echo renderChartHTML("../FusionCharts/MSCombiDY2D.swf", "", $strXML, "ProductSale", 600, 300, false);
  21. is it possible to get the charts from pdf?

    Hi! Muthu, When you are exporting your chart to PDF, you first have to convert your chart to image & then only you can export this image as PDF. So when you are viewing a chart as PDF, you are viewing the image of the chart. There are external utility programs that can be used to "Extract Graphics from a PDF".
  22. Hi, Could you please check your FusionCharts.js path? Because PHP API is only drawing the DIV in which 'Chart' text is embedded, & if when the chart is loaded then this text is replaced by the Chart tag.
  23. save multiple images in one file

    Hi!, I am afraid it is not possible to save more than one chart image into a single file. Could you please check the version of your AngularChart? saveAsImage function from javascript is exposed in version 3.0.6.
  24. problem in dragging window on fusion charts

    Hi, Could you please try using wmode='tranparent' or wmode='opaque'? You can easily do this using latest FusionCharts.js that has a new function setTransparent(true) or setTransparent(false).