Akash Biswas

Moderators
  • Content count

    417
  • Joined

  • Last visited

Everything posted by Akash Biswas

  1. export & clickURL problem

    Hi, The "clickURL" attribute lets you to set the entire chart as a hotspot, so when a click interaction is made anywhere on the chart the provided url opens. When you are selecting from the export menu option, a click interaction is done hence the URL opens and the chart exports as well. This is an intended behavior. Alternatively, you can export the chart using the "exportChart()" API method of FusionCharts, by invoking it on a HTML button click(external to the chart) instead of the drop-down export menu selection. Refer to the below sample fiddle : http://jsfiddle.net/nftom71j/3/ Thanks, Akash.
  2. Hi Prabu, Yes, you can selectively show the labels that you want to display on the chart by setting a configuration attribute explicitly within the data objects. Please refer to the sample below : http://jsfiddle.net/shrv1wL6/4/ You need to set "showLabels" attribute to "0" at chart-level attribute to "0" for hiding all the x-axis labels, and then set "showLabel" attribute to "1" within those "data" objects in the dataSource for which you want to show the labels on the chart. Thanks, Akash.
  3. Hi, You can check the FusionCharts documentation to use our PHP wrapper to render charts in a PHP environment. Documentation link : https://www.fusioncharts.com/dev/getting-started/php/your-first-chart-using-php Thanks, Akash.
  4. React Native iOS events are not firing

    Hi, This is a know issue of the React native plugin that the events are not working properly. We have it logged, you can check the reported issue in the below link : https://github.com/fusioncharts/react-native-fusioncharts/issues/48 We are working on it, you could get the update in the comments chain of the above issue. Thanks, Akash.
  5. Pie or doughnut chart placing values inside

    As of now the valuePosition is supported for Pie and Doughnut with 2D versions. 3D version of these chart types does not have this feature.
  6. add message load FusionMap XT - VueJS

    Hi, The string set to the attribute "dataLoadStartMessage" is displayed on the chart when the data is being loaded on to the chart. You can refer to the sample fiddle : http://jsfiddle.net/x7bvcqre/4/ For the message details and when the respective messages are displayed, please refer to the documentation link : https://www.fusioncharts.com/dev/common-use-cases/change-chart-messages#__layout Thanks, Akash.
  7. Tooltip showing on wrong element (Firefox)

    Thanks for the acknowledgement. Glad to know that your problem is resolved.
  8. Tooltip showing on wrong element (Firefox)

    Hi, Please check the dataSource of the provided fiddle for the "applycsstransform" attribute, which you need to set to "1" within the dataSource, in case you are applying external CSS to transform. Also refer to the modified fiddle working with the above mentioned attribute : https://jsfiddle.net/a9yjzxtb/2/ Thanks, Akash.
  9. Tooltip showing on wrong element (Firefox)

    Hi, Please check this sample fiddle for reference : http://jsfiddle.net/rn8pcxq2/ This issue has been fixed. If you still face the same issue, kindly replicate the same in a sample fiddle and provide us so that we can check. Thanks, Akash.
  10. getJSONData

    Hi, In a Drag node chart, the getJSONData() API method fetches the dataSource that is initially set to the chart constructor. Any changes by dragging does not modify the dataSource, so getJSONData() will always fetch the initial dataSource irrespective of any drag modification visually. Thanks, Akash.
  11. Custom Label on Hover for BarChart?

    Hi, The tooltip with the data plot details will be displayed on the chart when the column plots are hovered over. It is not possible to display tooltip on hovering the values on the chart. Thanks, Akash.
  12. Tooltip showing on wrong element (Firefox)

    Hi, Please check with the current released version that is 3.14.0-sr.1 : https://www.fusioncharts.com/download/fusioncharts-suite-xt?framework=jquery Let us know whether you are still facing the issue. Thanks, Akash.
  13. Change of values in y axis

    Hi Munmun, The sample code has the chart type as "mscolumn2d" which does not support dual y-axis. Please check the Point 3 of the previous response in details where it was mentioned that the dual y-axis feature is supported in dual y-axis combination chart(mscombidy2d). Also check the sample fiddle provided : https://jsfiddle.net/rmL5w2cd/4/ For further reference, check the documentation link : https://www.fusioncharts.com/dev/chart-guide/standard-charts/combination-charts#2d-dual-y-axis-combination-chart Please note : if the data plots for both the axes are set as column, the secondary plots overlaps the primary plotsReference documentation link : https://docs.fusioncharts.com/archive/3.13.0/upgrading/changed-behavior#secondary-data-plots-overlap-primary-data-plots-3 The components "vLine" and "trendline" are separate elements on the chart. "vLine": The vertical separator lines by default do not appear, you need to set them in the "category" object array accordingly. Refer to the documentation for the details : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/vertical-lines "trendline": These are horizontal reference lines on the chart to show a trend, limit, target or range for interpreting the data. They do not appear by default, you need to define the "trendlines" object array which is a part of the dataSource. It is set to a specific y-axis value as provided in the "startValue" attribute of the "line" object. Please reefer to the documentation for the trendline structure : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/trend-lines-and-zones Also a sample fiddle for reference : http://jsfiddle.net/fusioncharts/0x1zrh55/ You need to generate the dataSource of the mscombidy2d chart in your JSP code accordingly for implementing vLine and trendline on the chart. Thanks, Akash.
  14. Hi Lee, As mentioned the "plotHighlightEffect" attribute lets you enable/disable the highlight effect, in the form of a fadeout, for the data plots belonging to the other data series to fadeout by reducing their opacity. This opacity could be set using the "alpha" along with the "color" in the "plotHighlightEffect" attribute. By default the opacity is set to "50". Now, if you do not want the "plotHighlightEffect" to reduce the opacity of the other dataseries plots, then set "alpha" to "100"(or the same as you have set for the data objects) as below : plotHighlightEffect: "fadeout|color=#7f7f7f, alpha=100" And, if you do now want to set the color for the other dataseries on hovering a legend, then do not set the "color" within the "plotHighlightEffect attribute as below : plotHighlightEffect: "fadeout" Thanks, Akash.
  15. Change of values in y axis

    Hi Munmun, Please find the answers to your queries in the sequence asked : 1. FusionCharts internal algorithm sets a y-axis range(minimum and maximum) along with a good looking interval based on the provided plot values in the dataSource. If you want to set your own range and interval, you can customize it by setting the configuration attributes explicitly. For example - "yAxisMinValue": "0", "yAxisMaxValue": "3", "numDivLines": "5". This will display the values on the y-axis as 0, 0.5, 1, 1.5, 2, 2.5, 3. Sample fiddle : http://jsfiddle.net/d2femc6y/3/ For reference : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/div-lines-and-grids#customize-the-number-of-divisional-lines Please note : If the data values exceeds 3, then the above configuration attributes need to be set accordingly to get an interval o f 0.5 on the y-axis. 2. You can set the prefix or suffix to the values displayed on the chart by setting the "numberPrefix" and "numberSuffix" attributes accordingly. Please refer to the documentation ink for reference : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/number-format#add-number-prefix-and-suffix 3. Yes, you can plot columns(series) on either of the y-axis in a dual y-axis combination chart(mscombidy2d). Sample fiddle : http://jsfiddle.net/rmL5w2cd/4/ Please note : if the data plots for both the axes are set as column, the secondary plots overlaps the primary plots Reference documentation link : https://docs.fusioncharts.com/archive/3.13.0/upgrading/changed-behavior#secondary-data-plots-overlap-primary-data-plots-3 4. Yes, you could set the anchors at individual data objects to highlight a single point in a msline chart. Sample fiddle : http://jsfiddle.net/fkv37jeh/1/ Thanks, Akash.
  16. Hi, FusionCharts "ready" static method allows you to register callback functions that are executed when the FusionCharts library is ready to be used. In general, the FusionCharts framework is ready after the DOMContentLoaded browser event has been triggered and all the initial dependent files/modules are available. So, it is recommended that all entry-point and initialization codes are written within the ready()function. Please refer to the sample fiddle : http://jsfiddle.net/9nzjdaeo/2/ For reference you can check the documentation link for the "ready()" API method : https://www.fusioncharts.com/dev/api/fusioncharts/fusioncharts-methods Thanks, Akash.
  17. VueJs - Not work events connectorClick

    Hi, Yes, you need to bind the events as well in the <fusioncharts>. Refer to the modified fiddle : https://jsfiddle.net/zwrftn9s/2/ Thanks, Akash.
  18. Pie or doughnut chart placing values inside

    Hi Sebastien, Thanks for the acknowledgement. Yes, displaying values on top of Pie/Doughnut slices feature is now supported from 3.14.0 version. You can check the below documentation link for the details of the mentioned feature : https://www.fusioncharts.com/dev/upgrading/whats-new#pie-doughnut-chart Thanks, Akash.
  19. Fusion charts Excel Export

    Hi Ravi, In an Angular application, you could import from "fusioncharts/fusioncharts.excelexport" and then provide the dependency to the fcRoot(). Refer to the sample fiddle : https://codesandbox.io/s/radar-excelexport-xlxs-angular-jnwr5 You could also check the change log for the details : https://www.fusioncharts.com/dev/upgrading/version-history/version-3-13-X# Thanks, Akash.
  20. Fusion charts Excel Export

    Hi Ravi, You need to include the fusioncharts.excelexport.js file in your application/page to have the "xlsx" option in the export drop-down menu. Sample fiddle : http://jsfiddle.net/n15zxuo3/2/ Thanks, Akash.
  21. Hi Lee, This attribute "plotHighlightEffect" lets you enable/disable the highlight effect, in the form of a fadeout, for the data plots corresponding to a legend item. When this attribute is enabled and the mouse pointer is hovered over a legend item label, plots belonging to the other data series fadeout, by reducing their opacity. The fadeout effect can be customized by specifying the fadeout color and opacity using the color and alpha attributes. Eg. fadeout|color=#ff0000, alpha=60 This is the intended behavior of the mentioned attribute. For reference, you can check the attribute list : https://www.fusioncharts.com/dev/chart-attributes/msline Thanks, Akash.
  22. Sum values of stackedbar2d not centered

    Hi Sebastien, Thanks for the acknowledgement. We are glad to know that was helpful. Thanks, Akash.
  23. Sankey Charts

    Hi, FusionCharts does not support Sankey chart in the library as of now. Though we have this request logged internally in our wishlist. Thanks, Akash.
  24. Gantt Chart - ganttPaneDuration behaves incorrectly

    Hi, Hope you are keeping well! Thank you for your continued patience. For the issue reported, could you please upgrade your current version to the latest, i.e, FusionCharts Suite XT v3.14.0-sr.1? To avail the licensed release, you would need to re-download the entire package from the My Orders section of FusionCharts Product Update Center. PUC URL: https://puc.fusioncharts.com/ To download the Evaluation version of FusionCharts Suite XT v3.14.0-sr.1, please visit the link: https://www.fusioncharts.com/download/fusioncharts-suite-xt?framework=js Sample fiddle : http://jsfiddle.net/6wm1gdcz/4/
  25. Checkmarx reports potential XSS issues

    Hi, We are looking into this, we would get back to you if there are any updates. Thanks, Akash.