Haritha
Members-
Content count
489 -
Joined
-
Last visited
Everything posted by Haritha
-
Hi Sabin, The "link" attribute works for Angular Gauge as well. You may use it on the "dial" element of the Angular gauge to call a JavaScript function when a user clicks on the dial. Eg. <dials> <dial value="92" rearExtension="10" link='JavaScript: myJS('USA',235);'/> </dials> Hope this helps.
-
Hi, Could you please confirm if you are using Multi-series Area chart? If yes, could you please send us your XML/JSON data so that we can help you better? Awaiting your response.
-
Hi, Can you please send us a sample replicating the problem with all the necessary files in the form of Zip (similar to the sample sent above) so that we can test it here? Awaiting your response.
-
Hi, Thank you for your inputs. We shall look into its feasibility and shall update you on this thread.
-
Hi, We are looking into your query about Flash variant of China map and will get back to you soon. Meanwhile, could you please try using the JavaScript variant and let us know if it works fine? For converting the current chart to JavaScript chart, you just include the following line before the chart rendering. Ref. FusionCharts.setCurrentRenderer('JavaScript'); Also, you have used the attributes "borderColor" and "hoverColor" twice in your XML. Please use each attribute just once. Hope this helps
-
Hi Sabin, Welcome to FusionCharts Forum Yes, it is possible to call a JavaScript method when a user clicks on a Pie slice of a Pie chart. You can use the attribute "link" and specify the JavaScript function that you want to call as its value. FusionCharts XT provides two ways of setting JavaScript functions as links: 1. j- prefix : Just place the function name after the j- notation. The function will be evaluated as a standard JavaScript function and anything placed after the function name separated by a - (dash) will be passed as a single String parameter to the function. For example, { "label" : "week1", "value" : "196","link" : "j-myJS-USA,235" } 2. JavaScript: prefix : provide single or multiple JavaScript functions or statements after JavaScript: prefix. For example, { "label" : "week1", "value" : "196","link" : "JavaScript: myJS('USA',235);" } For more information, you may please refer : http://docs.fusioncharts.com/charts/contents/DrillDown/JavaScript.html Hope this helps.
-
Hi Nick, You may take a screenshot by pressing the print screen (PrtScn) button on your keyboard and paste it to Paint. Save the file and send that file to us. For attaching the file to this site, you can go to "More Reply Options" and attach the file and post the reply. Awaiting your response.
-
Hi, We tried to create a sample using the XML sent by you and it seems that the sample works as expected at our end. We have attached the sample here. Could you please try using the same sample at your end and let us know if it works fine? Also, we created the sample using the latest version of FusionCharts v3.3.1 SR2. Could you please check if you are using the latest version or not? If not, you can download the evaluation copy of the latest version from http://www.fusioncharts.com/download/trials/ and check again. Awaiting your response. DragNode.zip
-
Hi, The addition of Real Time Combination Chart in FusionWidgets XT is not present in our road map. Could you please specify the charts you want to have in the Real Time Combination Chart along with the purpose of the requirement, so that we can we can have a better idea of your feature request and also check its feasibility? Awaiting your response.
-
Hi, Welcome to FusionCharts Forum Can you please try passing true as a parameter to the method and check if it works? Eg. var xmlRtn = ourChart.getXMLData(true); Hope this helps
-
yAxisMinValue not respected when showRegressionLine=1
Haritha replied to engrade's topic in General usage
Hi, The default behavior of a Scatter chart is that it uses the mode Y on X to draw regression line. In the mode Y on X, values are predicted or a trend of y values are calculated based on the X values. Because of this, x becomes the explanatory variable and y becomes the dependent variable. Please try setting the attribute "showYOnX" to 0 to use the mode "X on Y". Ref. <chart .... showYOnX ='0' > For more information, please refer the section "Modes of Regression" from the link http://docs.fusioncharts.com/charts/contents/AttDesc/BubbleScatter.html Hope this helps. -
Hi, The Parameters of the function for using JavaScript links having J- prefix should not be enclosed within quotes. Also using this method, you can just pass one parameter from chart to your JavaScript. So, when you need to pass multiple parameters, combine them using a delimiter in XML (like ,) and then in your JavaScript method split it again. Hence, it is not possible to obtain a single value like 123 directly. You will have to split the entire value that you receive in the JavaScript function. Please refer the code below: <set .. link='j-myFunction-123,null,test' /> function myFunction(val) { var a=val.split(','); var firstVal=a[0]; var secondVal=a[1]; var thirdVal=a[2]; } Hope this helps.
-
Hi, A warm welcome to FusionCharts Forum Please try setting the attribute "plotGradientColor" to '' and try again. Ref. <chart ..... plotGradientColor='' > Could you please send us a screenshot of your requirement if this does not satisfy your query?
-
Hi, We are looking into the feasibility of your request and will get back to you soon.
-
Spider Chart: Need multiple background color bands in chart regions
Haritha replied to KiranVL's topic in Using PowerCharts XT
Hi Kiran, Radar chart does not support the feature of "filling multiple colors in each divisional grid bands", as of now. But as a workaround, using various attributes specified above, similar chart can be obtained. Hope this helps. -
Hi, It is not possible to call a function when the mouse is hovered over a node in a Drag Node chart. But, you can call a JavaScript function when user clicks on the node. Then, inside the JavaScript function you can have code to send ajax request to the desired page. For information on using JavaScript functions as links, please refer http://docs.fusioncharts.com/powercharts/Contents/DrillDown/JavaScript.html Hope this helps.
-
Hi, It is difficult to obtain the values of dataset elements from mean, median, upper and lower quartiles and the minimum and maximum numbers and plot the chart accordingly, if calculated values are provided to the chart. Hence, this feature is not supported and you will have to provide all the datasets that you need to plot on the chart. Hope this helps.
-
Hi Pickle, Glad that it helped Happy FusionCharting
- 6 replies
-
- multiseries
- asp.net
-
(and 1 more)
Tagged with:
-
Spider Chart: Need multiple background color bands in chart regions
Haritha replied to KiranVL's topic in Using PowerCharts XT
Hi Kiran, The Radar chart similar to the first model can be created using attributes like "radarFillColor", "radarFillAlpha", "anchorAlpha", "divLineColor", "divLineAlpha", "radarBorderColor" etc. Please find the attached screenshot along with the XML used. Hope this helps. Data_1.xml -
Hi Larry, The Box and Whisker chart calculates the mean, median, upper and lower quartiles and the minimum and maximum numbers for a given set of data automatically as of now. Hence, you need to provide all the set elements of the dataset to the chart. Hope this helps.
-
Hi Prashant, Can you please elaborate what you mean by "label value" ? If you want to retrieve the data for the given pointer index on the chart, then you may use the function "getData". For more information on the function, please refer http://docs.fusioncharts.com/widgets/Contents/Linear/JSAPI.html Hope this helps.
-
Hi, Yes , it is possible to have one color for one data plot and different color for the rest of the data plots. You may use the "color attribute of set element to define separate color for the first bar and "paletteColors" of the chart element to define color for the rest of the bars. Ref: <chart paletteColors='ABC123' ....> <set color='000123' .... /> Hope this helps.
-
Why Event Rollover And Rollout Cannot Work In Ie9/ie8/chrome
Haritha replied to 笑的自然's topic in Bug Reports
Hi Prashant, Could you please verify if your Chrome browser is using Adobe Flash Player and not Pep Flash Player (default for Chrome)? You may disable Pep and use Adobe Flash player by going to plugins and clicking on disable link. You may refer screenshot1 for the same. Also, please check if the folder "Event_Rollover" is present in the Flash Player Global Security settings. You may refer screenshot2 for the same. Hope this helps. -
Hi Andrew, Glad that it worked We are looking into your request and will update you of its developments in this thread.
-
Log Line Charts Render with Broken Lines when 0 Values Encountered
Haritha replied to TheWitness's topic in Bug Reports
Hi, The dataset does not appear on the chart when it contains all 0 values. This is an intended behavior. As a workaround, you may try setting the first set value to 1 so that you can find the dataset series name in legend. Please find the attached screenshot of the same. Also, the "connectNullData" connects the empty data sets in your data to the non-null data. So, it needs to have atleast one non-null data point in dataset to connect null data with it. Hope this helps.- 8 replies
-
- logarithmic
- log
-
(and 2 more)
Tagged with: