Akash Biswas

Moderators
  • Content count

    417
  • Joined

  • Last visited

Everything posted by Akash Biswas

  1. Hi, In your JSP file, the ID provided to the div as : <div id="chartContainer"> is not matching the ID mentioned in the "renderAt" parameter of the FusionCharts constructor. Please provide same string as the div ID and renderAt parameter to get the chart rendered on the defined div. Thanks, Akash.
  2. Xml schema for version 3.8

    The XSD schema files for charts are now deprecated, you can check the JSON files instead, please refer this link- https://github.com/fusioncharts/dev_centre_docs/tree/master/assets/attributes/fusioncharts
  3. Line chart combined with Scatter points

    We have responded you via your support ticket mail chain.
  4. We have responded you via the support ticket mail thread.
  5. You can check this sample for reference to FT chart with multiple column plots : http://jsfiddle.net/gtv7fpbw/4/
  6. Hi Munmun, For your requirement to render or show the plots based on the selection of the date picker, you can check the time-series charts of FusionTime. FT documentation : https://www.fusioncharts.com/dev/fusiontime/getting-started/how-fusion-time-works It provides a component(inbuilt) called Custom Range Selector, that allows you to set the from and to date/time. It is useful when you want to input the exact start and end date/time for which you want to see the data. Please check the documentation for details of CRS component supported in FT charts : https://www.fusioncharts.com/dev/fusiontime/fusiontime-component/custom-range-selector Thanks, Akash.
  7. drawFullAreaBorder not working

    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? 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, please visit the link: https://www.fusioncharts.com/download/fusioncharts-suite-xt?framework=js We would love to have your feedback. If you need any further assistance, please do drop us a mail. Thanks, Akash.
  8. Sum values of stackedbar2d not centered

    Hi Sebastien, 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? 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, please visit the link: https://www.fusioncharts.com/download/fusioncharts-suite-xt?framework=js We would love to have your feedback. If you need any further assistance, please do drop us a mail. Thanks, Akash.
  9. Value font color in bar2d charts

    Hi Jordi, All the plot values on the chart could have only a single font color set by default or by setting "valueFontColor" explicitly. So, whether the value is placed inside or outside the plots in a bar chart, it will be of the same font color, as FusionCharts supports a single valueFontColor for all the plots as of now. A compatible color which goes well with both dark and light background would help to increase readability. Alternatively, to show varying color of data plot value fonts, you can use Text annotations, but that would be static since you need to define the position(x and y) in pixels accordingly. Thanks, Akash.
  10. Require assistance for an ecommerce app

    Hi Steven, FusionCharts is a JavaScript charting library providing a variety of chart visualizations. Could you please let us know whether you want to use FusionCharts chart or widgets visualization in your mobile app. Yes, you can use FusionCharts to integrate the charts in an iOS app, please elaborate your query. Thanks, Akash.
  11. Hi Munmun, The multi-series line chart(msline) does not have scroll feature. But the scroll line chart(scrollline2d) supports scroll feature, and also it is multi-series in nature. So the dataSource structure of msline and scrollline2d is same. For your scenario, when you have a pretty big dataset and you are using msline chart type, the plots on the chart are getting clustered and apparently not clearly visible. Sample fiddle(msline) : http://jsfiddle.net/Lp4sywe3/4/ So, to avoid this you could simply change the chart type to "scrollline2d" instead of "msline" to get the same chart rendered with scroll bar without changing the dataSource(as the both chart types have same dataSource structure). Sample fiddle(scrollline2d) : http://jsfiddle.net/Lp4sywe3/5/ To configure the number of visible plots in the scrolled view, you can set "numVisiblePlots" at the chart-level dataSource. Thanks, Akash.
  12. Hi Munmun, The dataSource structure(in your code provided) that you are generating for scrollline2d chart type is a structure supported by a single-series chart like line or column2d. Hence you are getting the chart message "No data to display" displayed on the chart. Example : data: [{"label": "Q1", "value": "1234"}, {"label": "Q2", "value": "2222"}] But you need to generate the structure like below for scrollline2d chart which is a multi-series type. Correct structure example : "categories": [{ "category": [{"label": "Q1"}. {"label": "Q2"}] }] "dataset": [{ "seriesName": "Actual", "data": [{"value": "1234" }, { "value": "2222"}] }, { "seriesName": "Predicted", "data": [{ "value":: "1111" }, { "value": "4444" }] }] Please check the documentation below for the details of the structure of Scroll charts(similar to multi-series charts) : https://www.fusioncharts.com/dev/chart-guide/standard-charts/scroll-charts Thanks, Akash.
  13. Hi Munmun, The chart type that you are using is "msline" which does not support the scroll feature on the chart. You need to use the "scrollline2d" as the chart type in the FusionCharts constructor method. Please refer to the documentation for Scroll line char type details : https://www.fusioncharts.com/dev/chart-guide/standard-charts/scroll-charts Thanks, Akash.
  14. Render two charts in PHP?

    Hi, Glad to know that your problem is resolved. FusionCharts render charts on individual chart containers with unique ids. Thanks, Akash.
  15. Single Column Width

    Hi Israel, Yes, for horizontal bar chart(bar2d), the attribute "plotSpacePercent" is supported similar to the column2d chart type. But for bar2d chart you can use "maxBarHeight" instead of "maxColWidth" which is supported for column chart. Sample fiddle : http://jsfiddle.net/zndpL7b3/1/ Thanks, Akash.
  16. Getting Data Values on Y Axis

    Hi Hemanth, 1. The values on the y-axis are representing the divisional lines(periodic) on specific intervals. You can configure the interval by setting the number of divisional lines using numDivLines attribute. Please refer to the documentation link : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/div-lines-and-grids You can opt not to show the interval values also by setting "showYAxisValues" to "0", refer to the sample fiddle below. Sample fiddle : http://jsfiddle.net/reu6kj3v/2/ Please note : It is not possible to show specific y-axis values or non-periodic interval values. 2. To display a specific values on the y-axis like maximum or minimum values, you can use the trendlines feature of FusionCharts. Refer to the documentation for details : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/trend-lines-and-zones 3. You can check the supported FusionCharts API event - dataPlotClick that gets triggered on clicking the plots on the chart. Documentation link : https://www.fusioncharts.com/dev/api/fusioncharts/fusioncharts-events Sample fiddle : http://jsfiddle.net/fusioncharts/7kumz5ve/ Thanks, Akash.
  17. Horizontal bar chart

    Hi, Labels of a horizontal bar chart cannot be to left justified as of now. Thanks, Akash.
  18. Single Column Width

    Hi, The width of the column in a column chart having a single column plot is rendered based on the chart dimension. You can set the width of the column according to your requirement using the below possible configurations : - using "plotSpacePercent" attribute. - using "maxColWidth" attribute. Please check the sample fiddle for reference : http://jsfiddle.net/7qro1dxj/3/ Thanks, Akash.
  19. Hi Satya, Yes, you can display HTML table instead of the traditional tooltip to show the plot details on hovering the plot. You can refer to the below sample for the implementation : http://jsfiddle.net/6deM9/918/ However, to display the plot details in tooltip, you can use the pre-defined set of macros supported by FusionCharts, like $dataValue, $displayValue, etc. But for any additional values that you want to display, macros will not work as they are not available or pre-defined in the supported macros list. Please check the documentation for reference to the macros list of tooltip : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/tool-tips#list-of-tooltip-macros Thanks, Akash.
  20. Pie Chart Chart Size and Label Position in side Pie

    Hi Imran, - Text annotations are static components(custom text) on the chart. It could be placed anywhere on the chart by specifying the "x" and "y" attribute pixel values. So, to place them on top of the pie slices, you need to provide the x and y values according to your pie data. - The radius of the Pie cannot be provided in percentage. If you are setting "pieRadius", that means you are setting the radius in pixels explicitly and it would not be responsive. However, if you do not set the explicit radius, the pie would be responsive. Please note : As per the space management feature, if you hide the default pie labels and values(that appears outside the pie), then the pie dimension increases even without setting the "pieRadius". Also it would be responsive. Thanks, Akash.
  21. label getting converted to anchor tags

    Hi Mayank, Could you please elaborate the issue that you are facing. Also it would be great if you could provide a sample replicating this issue so that we can check at our end. Thanks, Akash.
  22. Hi, Yes, zoomTo() and resetChart() API methods for Zoomline chart are available in the current version that is 3.13.5-sr.1. Please refer to the below link for the list of API methods : https://www.fusioncharts.com/dev/api/fusioncharts/fusioncharts-methods Also find the below working samples for reference, with no error thrown on invoking these methods on the chart object references : Sample fiddle(zoomTo) : http://jsfiddle.net/rnev37pd/1/ Sample fiddle(resetChart) : http://jsfiddle.net/co3hetu5/3/ Thanks, Akash.
  23. Pie Chart Chart Size and Label Position in side Pie

    Hi Imran, - The labels/values of the pie slices cannot be displayed on the slices, as it is not supported. Since it might result in overlapping or going out of the slices in case of long labels, so this is natively not supported. - You can explicitly set the pie chart radius using the supported configuration attribute "pieRadius" and set the value in pixels. Please refer to the documentation link : https://www.fusioncharts.com/dev/chart-guide/standard-charts/pie-and-doughnut-charts#customize-pie-radius As a work-around you can set the pieRadius to set a large Pie chart, then you can hide the labels, values and legends by setting the attributes showLabels, showValues and showLegend to "0" respectively. To display the label and values on the pie slices, you can use Text annotation feature to display any text on the chart by specifying the "x" and "y" attributes of the annotations object. Documentation link : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/annotations/creating-annotations/create-text-annotations Also find a sample fiddle implementing the above technique : http://jsfiddle.net/7j2hkLtr/2/ Please note : Annotations are static in nature. Thanks, Akash.
  24. y axis max/min

    Hi, Thanks for the acknowledgement. Glad to know that the solutions provided was helpful. Thanks, Akash.
  25. y axis max/min

    Hi, If you do not want to plot the line or series for numerator and denominator on the chart, but want only the values to show in tooltip on hovering the line plots(of Metric series). Then you can define the "toolText" attributes within individual data objects of a simple line chart, with the numerator and denominator values so that they are shown in the tooltip. Please refer to the below samples for reference : Sample with numerator and denominator(static) in toolText attribute : http://jsfiddle.net/yrt9zqpv/2/ Sample with numerator and denominator(from variable array) in toolText attribute : http://jsfiddle.net/yrt9zqpv/3/ Thanks, Akash.