Akash Biswas

Moderators
  • Content count

    417
  • Joined

  • Last visited

Posts posted by Akash Biswas


  1. 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.18.0?

     

    To avail of 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.18.0, please visit the link: https://www.fusioncharts.com/download/fusioncharts-suite

     

    Thanks,

    Akash.


  2. Hi Dipak,

     

    Legends are supported in multi-series chart types like mscolumn2d, msbar2d, combination chart types and Doughunut/Pie chart types. Single-series chart types like column2d or bar2d does not support legends feature.

    In a single-series chart type the data plot names cannot be displayed as legends, since legends represents series on a multi-series chart.

    Documentation link for legends : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/legend

     

    Thanks,

    Akash.


  3. Hi Dipak,

     

    The data value displayed on the data plots cannot be positioned at the top of the data plots natively.

    As a work-around you can use Text annotation to display custom string anywhere on the chart by positioning it using the "x" and "y" configuration attributes to set its co-ordinates in pixels.

    Please check the below documentation link for reference :

    https://www.fusioncharts.com/dev/chart-guide/chart-configurations/annotations/creating-annotations/create-text-annotations

    Sample fiddle for reference : https://jsfiddle.net/us1ohfg2/3/

     

    Please note : Annotations are static in nature.

     

    Thanks,

    Akash.


  4. Hi,

     

    The Heatmap cells color is determined by the "colorRange" object that you define in your dataSource. Check this sample fiddle for reference :
     
     
    Or you can explicitly set the color of the cells by defining the "color" configuration attribute within the individual "data" objects as below :
     
    {
    "rowid": "Samsung Galaxy S5",
    "columnid": "Processor",
    "value": "8.7",
    "tllabel": "Quad Core 2.5 GHz",
    "trlabel": "OS : Android 4.4 Kitkat",
    "color": "#FF0000"
    }
     
     

     

    Thanks,

    Akash.


  5. Hi,

     

    Yes, Annotations are static component of the chart, and you can position them by specifying the "x" and "y" co-ordinates accordingly. However, display value cannot be positioned explicitly. It could be placed inside/outside of the data plots.

     

    FusionCharts also supports the option to add padding to the data values. Please refer to the below documentation link for setting valuePadding configuration attribute :

    https://www.fusioncharts.com/dev/chart-guide/chart-configurations/chart-paddings-and-margins#set-padding-for-data-value

     

    Please note : The value and displayValue are right aligned in a bar visualization.

     

    Thanks,

    Akash.


  6. Hi,

     

    You can use the "displayValue" configuration to show your text on the bar plots instead of displaying annotations to avoid this scenario. Check this sample for reference :

    http://jsfiddle.net/sj32meub/1/

     

    Documentation link for reference : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/data-values#configure-text-labels-instead-of-numeric-data-values

     

    Thanks,

    Akash.


  7. Hi,

     

    The annotation is placed over the data plots(bars), hence it is on top of the bar, and the bar is behind the annotation. Hence the data plots(bars) tooltip will not appear when the mouse is over the annotation items.

    You can set the "showBelow" configuration attributes within the "groups" object of the dataSource to "1" to set the annotations behind the data plots.

     

    Thanks,

    Akash.


  8. Hi Hosam,

     

    Please check this sample fiddle using your shared data where the tooltip is not displayed as in your shared image.

    Sample fiddle : http://jsfiddle.net/c65y9zjb/\

    Please check whether you are getting the issue replicated in the above sample. If you still face any issue, kindly replicate the same in the sample fiddle and share with us.

     

    Please note : We are using the current released version of the library 3.16.0.

     

    Thanks,

    Akash.


  9. Hi Ahmed,

     

    You need to include the below JS files to render the mention map :

    https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.js
    https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.maps.js
    https://cdn.fusioncharts.com/fusioncharts/latest/maps/fusioncharts.worldwithantarctica.js

    Please check this below sample fetal for reference :
    http://jsfiddle.net/hz3qws6p/2/

    Also check if you have correctly added the map type as "worldwithantarctica" instead of "worldwithantartica".

     

    Thanks,

    Akash.


  10. Hi Srinivas,

     

    FusionCharts Flash based version was a very old version of the library which has been deprecated long back and no longer support is available.

    FusionCharts starting 3.4.0 is a pure JavaScript library(with no longer support for Flash), and the current released version is 3.15.3.

    To upgrade from Flash version to current version, please refer to this documentation link :

    https://www.fusioncharts.com/dev/upgrading/from-flash-to-javascript

    You can download the current released version(trial) - 3.15.3 of FusionCharts library from the below link :
    https://www.fusioncharts.com/download/fusioncharts-suite-xt

     

    Thanks,

    Akash.


  11. Hi,

     

    1. and 2. The updating data to the chart is working fine, with the previous rendered data and adding the new ones to the right of the canvas. Check this showcased sample for reference : https://www.fusioncharts.com/fusiontime/examples/add-data-in-real-time

    Please refer to the code reference in the above link to implement accordingly in your implementation.

    3. 4. and 5. These are not supported attributes of FT charts. Please check the supported list of configuration attributes of FT charts :
    https://www.fusioncharts.com/dev/fusiontime/fusiontime-attributes

    6. The dynamically updating chart using feedData() API method keeps adding from the right of the canvas and the data plots moves out from the other end. This is the intended feature, and cannot be disabled to stop the plots to move out since when number of data values constantly being fed into a chart, it can slow down browser performance, or even cause a browser crash. To avoid this, use the optional chart level attribute timeSpread, to specify the total time interval you want to display in the chart at a given instant.

    Documentation for reference : https://www.fusioncharts.com/dev/fusiontime/getting-started/real-time-data-in-fusiontime

     

    Thanks,

    Akash.


  12. Hi,

     

    You can customize the reference line, check the attribute list for the supported configurations : https://www.fusioncharts.com/dev/fusiontime/fusiontime-attributes#reference-lines

    Also check this showcased sample with the dataSource below for reference : https://www.fusioncharts.com/fusiontime/examples/multiple-reference-lines-on-same-chart?framework=javascript

    Also find a sample fiddle for reference : https://jsfiddle.net/92kjpguv/

     

    Please note : The labels will be displayed when the notches of the reference lines are hovered over of a FT charts.

     

    Thanks,

    Akash.


  13. Hi,

     

    The mspline is a supported chart type of FusionChartsXT product, and a timeseries is a chart type of FusionTime product.

    You check the "Reference lines" feature of FT charts, which is similar to the trendlines feature of FC charts. Please check the below documentation link for reference to FT - Reference lines feature :

    https://www.fusioncharts.com/dev/fusiontime/fusiontime-component/reference-line-in-fusiontime

    Please note : FT and FC are separate products with different features and implementation ways.

     

    Thanks,

    Akash.


  14. Hi James,

     

    The internal algorithm of FusionCharts automatically adjusts the space management based on the provided chart dimensions(height and width) of the Doughnut charts. However, this space management is disabled if you explicitly set the component dimensions like pieRadius attribute configurations.

    So to achieve a similar visualization as per your required one, check this modified dataSource by removing the explicit configuration attributes :
    http://jsfiddle.net/ynLprt9h/2/

    Please note : Keep the configuration attributes "manageLabelOverflow" and "useEllipsesWhenOverflow" enabled as it would automatically adjust and avoid labels to go out of the canvas when a larger font size is set to the labels using "labelFontSize" configuration attributes.

     

    Thanks,

    Akash.


  15. Hi,

     

    The SWF files are deprecated long back which were used in the Flash based versions of FusionCharts.

    To render charts using the JS version library you need to include fusionchart.js and fusioncharts.charts.js to render the charts from FusionChartsXT package. Refer to the JavaScript resources in the settings of the below CodePen sample :

    https://codepen.io/Akash008/pen/yLypzZa

     

    Trial version download link of current version 3.15.0-sr.1 : https://www.fusioncharts.com/download/fusioncharts-suite-xt?framework=js

    Documentation guide to upgrade from Flash version to the current JS version of FusionCharts : https://www.fusioncharts.com/dev/upgrading/from-flash-to-javascript

    To render your first chart, refer to this documentation link for the steps and instruction : https://www.fusioncharts.com/dev/getting-started/plain-javascript/your-first-chart-using-plain-javascript

     

    Thanks,

    Akash.


  16. Hi James,

     

    You can try this work-around solution for your requirement to display caption on the sides of the Bulb Gauge, using Text annotations to place any custom string anywhere on the chart by specifying its "x" and "y" co-ordinates in pixels. Check this sample fiddle for reference :

    http://jsfiddle.net/jxg2muv3/1/

    You need to set the margin attributes accordingly to set space on the chart to position the text annotation.

    To know more about Text annotations, check this documentation link : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/annotations/creating-annotations/create-text-annotations

    Please note : Annotations are static in nature.

     

    Thanks,

    Akash.