
Akash Biswas
Moderators-
Content count
417 -
Joined
-
Last visited
Everything posted by Akash Biswas
-
Uncaught (in promise) Error: TypeError: Cannot read property 'call' of undefined at a (fusioncharts.js:13)
Akash Biswas replied to Munmun's topic in Javascript Problems
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.- 1 reply
-
- exception
- fusionchart.js
-
(and 1 more)
Tagged with:
-
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
-
We have responded you via your support ticket mail chain.
-
Looking for a Fusion Chart Developer for an easy quick project
Akash Biswas replied to nickaz's topic in FusionCharts Jobs and Consultation
We have responded you via the support ticket mail thread. -
How to create a FusionChart using a datepicker
Akash Biswas replied to Munmun's topic in FusionCharts and JSP
You can check this sample for reference to FT chart with multiple column plots : http://jsfiddle.net/gtv7fpbw/4/ -
How to create a FusionChart using a datepicker
Akash Biswas replied to Munmun's topic in FusionCharts and JSP
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. -
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.
-
Sum values of stackedbar2d not centered
Akash Biswas replied to MGS_Sebastien's topic in Bug Reports
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. -
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.
-
Require assistance for an ecommerce app
Akash Biswas replied to StevenClark's topic in User Showcase
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. -
Unable to create a fusion multiseries chart with scrollbar
Akash Biswas replied to Munmun's topic in General usage
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.- 5 replies
-
- scroll multiseries chart
- scrollbar
-
(and 1 more)
Tagged with:
-
Unable to create a fusion multiseries chart with scrollbar
Akash Biswas replied to Munmun's topic in General usage
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.- 5 replies
-
- scroll multiseries chart
- scrollbar
-
(and 1 more)
Tagged with:
-
Unable to create a fusion multiseries chart with scrollbar
Akash Biswas replied to Munmun's topic in General usage
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.- 5 replies
-
- scroll multiseries chart
- scrollbar
-
(and 1 more)
Tagged with:
-
Hi, Glad to know that your problem is resolved. FusionCharts render charts on individual chart containers with unique ids. Thanks, Akash.
-
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.
-
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.
-
Hi, Labels of a horizontal bar chart cannot be to left justified as of now. Thanks, Akash.
-
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.
-
plottooltext custom tooltip options on scatter charts
Akash Biswas replied to Satya Tvv's topic in Suggestions & Requests
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. -
Pie Chart Chart Size and Label Position in side Pie
Akash Biswas replied to Imran Javed's topic in General usage
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. -
label getting converted to anchor tags
Akash Biswas replied to Mayank garg's topic in Javascript Problems
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. -
zoomTo() and resetChart() methods on FusionCharts object not found
Akash Biswas replied to someone555's topic in Javascript Problems
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. -
Pie Chart Chart Size and Label Position in side Pie
Akash Biswas replied to Imran Javed's topic in General usage
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. -
Hi, Thanks for the acknowledgement. Glad to know that the solutions provided was helpful. Thanks, Akash.
-
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.