Haritha

Members
  • Content count

    489
  • Joined

  • Last visited

Everything posted by Haritha

  1. Click event of 2D pie chart

    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.
  2. MS Area chart - Area fill color is very light

    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.
  3. GetXMLData Bug

    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.
  4. Hi, Thank you for your inputs. We shall look into its feasibility and shall update you on this thread.
  5. Click invalid using fusionMaps

    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
  6. Click event of 2D pie chart

    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.
  7. MS Area chart - Area fill color is very light

    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.
  8. GetXMLData Bug

    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
  9. 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.
  10. GetXMLData Bug

    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
  11. 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.
  12. multiple parameters in Javascript function

    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.
  13. MS Area chart - Area fill color is very light

    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?
  14. Very Large Box and Whisker Datasets

    Hi, We are looking into the feasibility of your request and will get back to you soon.
  15. 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.
  16. problems about DragNode chart

    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.
  17. Very Large Box and Whisker Datasets

    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.
  18. Multi-Series Column Single Y

    Hi Pickle, Glad that it helped Happy FusionCharting
  19. 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
  20. Very Large Box and Whisker Datasets

    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.
  21. Linear Gauge Updates

    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.
  22. Border Bars color

    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.
  23. 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.
  24. Scatter Chart breaks slanted labels

    Hi Andrew, Glad that it worked We are looking into your request and will update you of its developments in this thread.
  25. 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.