Akash Biswas

Moderators
  • Content count

    417
  • Joined

  • Last visited

Everything posted by Akash Biswas

  1. USA DMA maps no longer color correctly

    Hi Emilio, The individual "color" objects(child of colorRange object) supports the attributes "minValue" and "maxValue" to define the lower and upper limit of the color range. In your implementation the "value" attribute is used within the color objects, which is not supported. Instead, use the attribute "maxValue" in the color objects, Please refer to the modified sample fiddle : https://jsfiddle.net/cxekLuw8/3/ Also we would request you to use the latest version(3.13.3-sr.1) as in the above fiddle, and you need to include the usadma.js file to render the map. Thanks, Akash.
  2. mscolumn2d -

    Hi, The categories is an array of objects as per the prescribed dataSource format of mscolumn2d chart type of FusionCharts. In your implementation, it is defined as an object, hence you are getting the error. Please find the below modified fiddle working with your implementation : https://jsfiddle.net/fb2awdy3/ For further reference, please check the documentation link for the dataSource structure : https://www.fusioncharts.com/dev/chart-guide/standard-charts/multi-series-charts Thanks, Akash
  3. drawFullAreaBorder not working

    Thanks for pointing this out. We have logged it as an issue internally, and the respective team will be working on it. We will keep you posted with the updates. Thanks, Akash.
  4. Hi Hendra, This is a known issue in the current version 3.13.3-sr.1 of FusionCharts library. We already have this logged internally, and the concerned team is working on it. We will notify you with the updates in due course. Thanks, Akash.
  5. Funnel charts not working with version 3.13.3

    Thanks for the acknowledgement.
  6. Funnel charts not working with version 3.13.3

    Hi, You need to include fusioncharts.js and fusioncharts.widgets.js to render any chart or widget that comes under the FusionWidgets. Please check the below sample for reference using your dataSource : http://jsfiddle.net/y3qbzet8/ Please note : Funnel chart is categorized under FusionWidgets package. Thanks, Akash.
  7. Want to chenge the label position

    Hi, You can check the XML dataSource structure in the XML tab of the showcased chart in the below documentation link : https://www.fusioncharts.com/dev/chart-guide/standard-charts/line-area-and-column-charts Also you can get the XML using the getXMLData() API method on the chart object as below : revenueChart.getXMLData(); Refer to the sample fiddle : https://jsfiddle.net/4eLsb2v0/2/ Then you can use the fetched XML in the chart dataSource. Check the below sample fiddle for reference : https://jsfiddle.net/4eLsb2v0/1/ Documentation link for reference to getXMLData() API method : https://www.fusioncharts.com/dev/api/fusioncharts/fusioncharts-methods Thanks, Akash.
  8. Thanks for the acknowledgement
  9. FusionCharts in FileMaker Pro

    Hi Salman, You can refer to the below blog post link to render the charts and maps from FusionCharts using FileMaker Pro https://www.fusioncharts.com/blog/using-fusioncharts-filemaker-pro-15/ Thanks, Akash
  10. Hi Pablo, Please check with the new version 3.13.3-sr.1, the issue has been fixed. Check the below sample fiddle using the current version : https://jsfiddle.net/0szLgh5b/ Thanks, Akash
  11. Hi, It is working fine at our end using the version 3.13.3. Please refer to the sample fiddle : https://jsfiddle.net/vfecusq4/ If you are still facing the same issue, kindly provide a scaled down sample replicating the issue, so that we can check at our end and investigate. Thanks, Akash.
  12. Hi Axel, Apologies for mistyping your name. Yes, you can configure the tick value position. Refer to the documentation link : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/tick-marks#configure-the-tick-value-position-3 You can also add padding to the tick marks and tick values. Documentation link : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/tick-marks#configure-tick-mark-and-tick-value-padding-8 To configure the tick marks, refer to : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/tick-marks#configure-visuals-of-tick-marks-10 You can even opt to display the nth tick values. Documentation link : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/tick-marks#display-every-nth-tick-mark-value-6 But, it is not possible to have a discontinuous tick values as in your provided image below : Check the entire list of supported attributes for Angular Gauge : https://www.fusioncharts.com/dev/chart-attributes/?chart=angulargauge To hide the pivot needle set the below attributes in chart-level dataSource : "dialbgHoverAlpha": "0", "pivotRadius": "0", And in the dial object, set the below attributes : "bgColor": "#FFFFFF", "rearExtension": "0", "alpha": "0" Sample fiddle for reference : https://jsfiddle.net/ycgdmv8n/ Thanks, Akash.
  13. Hi, We already have an issue logged for your reported scenario of y-axis lower limit(0) not appearing when y-axis max value is manually set with adjustDiv=1(default). It has been scoped to 3.14 version release. We will keep you posted with the updates. However, when the yAxisMaxValue is set manually with adjustDv set to 1, will adjust the divisional lines with good looking intervals but also keeping the maximum value as it is set(odd or even). Sample : http://jsfiddle.net/S52bN/2556/ If you want to have the divisional lines to be equally spaced(which may not have a good looking intervals) then you need to set adjustDiv to 0. Sample : http://jsfiddle.net/ek1rw6o9/ Thanks, Akash.
  14. Hi Alex, Please find the modified fiddle without the message logger feature : https://jsfiddle.net/q01hvem8/1/ As mentioned in the earlier post, you can show or hide all the tick values using "showTickValues" attribute. But it is not possible to hide only a single tick value while the other tick values are displayed. Thanks, Akash.
  15. Need help with gantt chart XML string

    Hi, To render the using XML format dtaSource, you need to create the dataSource in the prescribed XML structure of FusionCharts Gantt chart. Please refer to the documentation for the prescribed structure : https://www.fusioncharts.com/dev/chart-guide/standard-charts/gantt-chart You can also use the getXMLData() API method of FusionCharts to fetch the xml dataSource from the rendered chart(using JSON). Sample : http://jsfiddle.net/0nzL2459/ Then use the fetched XML dataSource using the API method in your new chart with "dataFormat" set to "xml". Sample : https://jsfiddle.net/9Low2mkr/ getXMLData() API method reference link : https://www.fusioncharts.com/dev/api/fusioncharts/fusioncharts-methods#getxmldata-29 Thanks, Akash.
  16. Hi, You can show or hide all the tick values using "showTickValues" attribute. Please refer to the documentation for reference : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/tick-marks#showhide-the-tick-values-2 Please note : It is not possible to hide only one or two tick values. You can also set the number of major tick marks on the gauge using the "majorTMNumber" attribute. Refer to the documentation link : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/tick-marks#set-the-number-of-major-and-minor-tick-marks-9 Sample : https://jsfiddle.net/q01hvem8/ Thanks, Akash.
  17. Want to chenge the label position

    Hi, The xAxisName or yAxisName is not possible to position as per the shared image. The axis names are always aligned at the center of the axis lines. Alternatively, you can use Text annotations to place any text anywhere on the chart. For your requirement, you can place the text annotations on top of the y-axis and at the right of the x-axis. Please check the documentation link for more details about Text annotations : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/annotations#create-text-annotations-4 Also for positioning the annotations : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/annotations#positioning-annotations-15 Find a sample fiddle for reference : http://jsfiddle.net/4eLsb2v0/ Please note : Annotations are static in nature. Thanks, Akash.
  18. Hi Pablo, It has been identified as an issue, and we have already logged it internally for a fix. We would let you know about the updates via this chain in due course. Thanks, Akash.
  19. Want to chenge the label position

    Hi, The x-axis and y-axis name would appear at the respective x and y axis lines. Please let us know where do you want to position the axis names with respect to this fiddle : http://jsfiddle.net/z1dfLoup/ Please check the documentation for axis name configuration : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/titles-and-axis-names#configure-font-cosmetic-properties-5 If you want to add an unit to the values, you can add any string that will be suffixed with the values using numberSuffix attributes. Please refer to the documentation link : https://www.fusioncharts.com/dev/chart-attributes/?chart=column2d&attribute=chart_numberSuffix Thanks, Akash.
  20. Gantt overlapping problem

    Hi Razvan, Various bug fixes are included in the incremental version releases. These are reported as well as internally fixed while testing the product. Please test with the current version 3.13.3, if you do not get the issue replicated then we would suggest you to upgrade to the current version. Or if you are facing the same issue with the current version as well, please provide us the replicated sample we would forward it to the concerned team for a fix. Thanks, Akash.
  21. Images Above Column

    Thanks for the acknowledgement.
  22. Gantt overlapping problem

    Hi Razvan, Could you please check your chart implementation using version 3.13.3 which is the current version of FusionCharts. Trial version download link : https://www.fusioncharts.com/download/fusioncharts-suite-xt Gantt chart sample fiddle : https://jsfiddle.net/fusioncharts/avLb04cs/ Let us know if you face the same problem using the current version, also provide us the sample replicating the issue so that we can check at our end. Thanks, Akash.
  23. Hi, You can check our new product FusionExport, which is entirely a separate product that primarily focuses on exporting with advanced features. It works with all JavaScript charting libraries (FusionCharts, HighCharts, d3, Chart.js or others). Please check the link for an overview of FusionExport : https://www.fusioncharts.com/fusionexport It includes SDKs for Java, Node.js, C#, Go and many more. Refer to the documentation for the same : https://www.fusioncharts.com/dev/exporting-charts/using-fusionexport/overview Installation guide reference : https://www.fusioncharts.com/dev/exporting-charts/using-fusionexport/installation/install-fusionexport-server To export charts using other charting library, refer this link : https://www.fusioncharts.com/dev/exporting-charts/using-fusionexport/tutorials/export-a-d3-chart Thanks, Akash.
  24. Hi, In this multi-series column chart, you have two dataset series plotted on the chart. So each pair of data plots plotted against a single x-axis data label are both centered together. Since you have many plots with null values in the blue series(second screenshot), those will not be visible on the chart so the green series plot is displayed as not centered. For example from APR to DEC. But as both the series plots are centered together, you can see the plots aligned for example from JAN to MAR. Please note : It is not possible to make a plot to take up the entire space or aligned to center only when the other plot is null or zero for the respective data labels. For reference to your first image, if you have all the plots as null for a series, then you can hide the entire series by disabling the legend for that series. This will allow the other series plots to take up the entire space and aligned to center. Sample fiddle : http://jsfiddle.net/18fegarn/ Thanks, Akash.
  25. Gantt 3.13.2-sr.1: Uncaught () is not a function

    Hi, By default FusionCharts displays a hand pointer when a "link" attribute is used. It is natively not supported to display it as pointer cursor on hovering over the plots when the link attribute is set. If you want to have cursor pointer even with link attribute set, you need to implement it at your end accordingly for your requirement. Regarding the "j-" notation please check the documentation for reference : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/drill-down#use-javascript-functions-as-links-14 Thanks, Akash.