-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Hi, I am afraid, It is not possible as of now.
-
Enable image saving while using dataXML method
Rahul Kumar replied to tampe125's topic in General usage
Hi, Could you please try the attached code? That might fulfill your need. FusionCharts_SaveAsImage.zip -
ZeroPlane splitting at other value than 0 ?
Rahul Kumar replied to FlorianHarvest's topic in General usage
Hi, I am afraid, it is not possible as of now. -
Using FusionCharts with VB.NET on Windows Forms
Rahul Kumar replied to rubenruvalcaba's topic in General usage
Hi, Could you please make sure that you are using FC.SetVariable("registerWithJS", "1") before calling FC.CallFunction(FlashCall("setDataXML", args))? -
Hi, I am afraid it is not possible as of now.
-
Hi, It seems that flash player does not support res:// protocol, thats why it fails to show the chart.
-
Enable image saving while using dataXML method
Rahul Kumar replied to tampe125's topic in General usage
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. -
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.
-
Using the character '+' in chart labels
Rahul Kumar replied to FusionCharts Support's topic in General usage
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. -
X-Axis Horizontal Padding for Labels & Data Points
Rahul Kumar replied to exio's topic in General usage
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. -
HELP! using php and MS Access to built dual Y chart
Rahul Kumar replied to bender's topic in FusionCharts and PHP
Hi, You can use renderAs='Line' attribute in each dataset element to which you want to render line graph in MSCombiDY2D.swf chart. -
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.
-
Hi, Could you please use chartObj.setTransparent(true) in javascript, and set the attribute bgAlpha='0,0'.
-
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:.
-
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.
-
HELP! using php and MS Access to built dual Y chart
Rahul Kumar replied to bender's topic in FusionCharts and PHP
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. -
HELP! using php and MS Access to built dual Y chart
Rahul Kumar replied to bender's topic in FusionCharts and PHP
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. -
HELP! using php and MS Access to built dual Y chart
Rahul Kumar replied to bender's topic in FusionCharts and PHP
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 -
Binary line graph - can not figure out how to have two values on the Binary line graph - can not figure out how to have two values on the same x value but different y values
Rahul Kumar replied to Rahul Kumar's topic in General usage
Hi, You might be using some other chart than "Scatter.swf". Please use "Scatter.swf". -
Hi, I am afraid we could not give you the software name, but you could use Google search for that.
-
HELP! using php and MS Access to built dual Y chart
Rahul Kumar replied to bender's topic in FusionCharts and PHP
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); -
is it possible to get the charts from pdf?
Rahul Kumar replied to muthu's topic in FusionCharts and JSP
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". -
HELP! using php and MS Access to built dual Y chart
Rahul Kumar replied to bender's topic in FusionCharts and PHP
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. -
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.
-
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).