-
Content count
115 -
Joined
-
Last visited
Everything posted by Gagan Sikri
-
Hi Please share the scaled down sample with complete source code with us so that we can assist you accordingly. Also, please mention which version of FusionCharts Suite are you using?
-
Changes in Event handling in 3.10.1 release?
Gagan Sikri replied to Jordi's topic in Installation and Upgrades
Hi We have internally fixed the issue and it will be taken up in our next upcoming release for FusionCharts 3.11. We will keep you posted about the same. -
Hi It is not possible to render charts inside emails, as email service providers do not allow execution of custom JavaScript and chart require JavaScript to render. You can export the chart into image or use chart SVG to include charts in your emails.
-
Howto fusionchart XT Multi-series chart from Database (SQL)
Gagan Sikri replied to stineco's topic in FusionCharts and PHP
Hi You can refer to this link to download a sample for multi-series chart with PHP and MySQL using data from single table: https://www.dropbox.com/s/82femvv3yqnddkc/multi-series-mysql.zip?dl=0 It includes SQL dump as well. Hope it helps. -
drawCustomLegendIcon not working with multiLegend charts
Gagan Sikri replied to edesin's topic in Bug Reports
Hi Thanks for reporting, we have logged an improvement request for the same internally and it will be taken up in our upcoming release for FusionCharts 3.11. We will keep you posted about the same. -
Hi You can position annotations on chart using chart and data set macros. Please refer to this link to know more: http://www.fusioncharts.com/dev/advanced-chart-configurations/annotations/positioning-annotations-using-macros.html
-
Hi SWF files were used with flash version of FusionCharts, now charts are rendered using pure JavaScript only. Also, the .NET wrapper has also been updated which can be downloaded using this link: http://www.fusioncharts.com/asp-net-charts/ To know more about creating charts using ASP.NET wrapper, please refer to this developer documentation link: http://www.fusioncharts.com/dev/using-with-server-side-languages/asp-net/introduction.html
-
Hi Can you check if there is any error in browser console for the issue? Also, please share a scaled down sample for issue you are facing so that I can assist you accordingly.
-
Hi Can you check if there is any error in browser console for the issue? Also, please share a scaled down sample for issue you are facing so that I can assist you accordingly.
-
Hi You do not need `legendItemClick` event for this purpose. You can directly specify attribute `initiallyHidden` in data series you don't want to show when chart is rendered. Chart will render only with data series that are enabled and on legend click for disabled items, they will also appear. Please refer to this JSFiddle sample for the same: http://jsfiddle.net/fusioncharts/mEHs3/
-
$dataValue macro in plotToolText and toolText doesn't work when graph is renderedAs a line
Gagan Sikri replied to edesin's topic in Bug Reports
Hi We have identified it as a problem with value macros, and logged an improvement request for it. We will keep you posted about the same. -
Hi Can you tell us for which operating system you are facing this issue?
-
Hi You can display trend line value on right side to prevent overlapping with y-axis scale limits using attribute `valueOnRight`. Please refer to this JSFiddle sample for the same: http://jsfiddle.net/sikrigagan/s7t8F/1514/
-
Combining Box and Whisker Charts with Scatter plots
Gagan Sikri replied to nairs's topic in FusionCharts and ASP.NET
Hi It is not possible to add scatter points to Box and Whisker charts natively, but you can use shape annotations to place scatter dots in chart canvas. You can refer to this documentation page to know more about annotations: http://www.fusioncharts.com/dev/advanced-chart-configurations/annotations/creating-annotations/creating-shape-annotations.html Please do note that annotations are static in nature and have to be manually placed and updated in the chart. -
Hi Can you provide more details about the issue like is it replicated across all browsers or any specific one? Also, you can replicate the issue in this JSFiddle sample, so that I can assist you accordingly: http://jsfiddle.net/f1dbuzny/4/
- 2 replies
-
- zoomscatter
- tooltip
-
(and 1 more)
Tagged with:
-
How to display the data on top of Bar chart bar always
Gagan Sikri replied to FusionChandu's topic in FusionCharts and JSP
Hi You have to specify chart attribute `placeValuesInside` and its value as `0` to display all the values outside data plot (column). Please refer to this JSFiddle sample for the same: http://jsfiddle.net/s7t8F/1461/ -
Embedding angular Gauge in an Iframe doesn't work properly
Gagan Sikri replied to Axel's topic in Javascript Problems
Hi You have to define scope for FusionCharts JavaScript files in HTML files you are including iFrame in. Please refer to attached sample for the same. iFrame.zip -
Exporting 3D charts doesn't render the images in IE/Edge
Gagan Sikri replied to hygiycj's topic in Javascript Problems
Hi Export feature is working fine with Edge/IE and Column3D chart. Please refer to attached screenshot for more details. If you are using older version of FusionCharts, please upgrade to latest version i.e. 3.10.1 and try. -
Dynamically Populating The (X,y) Cordinates...
Gagan Sikri replied to PHANI KUMAR A's topic in Bug Reports
Hi It is not possible to dynamically generate X and Y co-ordinate values in Drag Node charts natively using FusionCharts. Though you can generate JSON or XML with X and Y values by defining your custom function based on dimension provided for the chart. -
different valueBgColor / fontcolor for inside and outside data plots
Gagan Sikri replied to Mirco's topic in Suggestions & Requests
Hi You can restrict placement of values inside and outside the columns/bars using chart attribute `placeValuesInside` with its value as `0` to place all values outside and `1` to place all values inside and define value cosmetics accordingly. Please refer to below JSFiddle samples for the same: 1. Outside: http://jsfiddle.net/s7t8F/1454/ 2. Inside: http://jsfiddle.net/s7t8F/1455/ -
Hi Zoom Scatter chart is used to plot huge data sets i.e around million data points and, adding line for data sets will affect the visualization and chart will not look good visually so, it do not support `drawLine` attribute. Also, adding line will affect the performance of the chart.
-
MySql Values with Array - Stacked Column
Gagan Sikri replied to kbjayhawks's topic in FusionCharts and PHP
Hi You have to append categories array and array for series into one associative array which will have 3 objects i.e. `chart` - it will have all chart config and cosmetic options, `categories` - it will contain category object which will be x-axis labels and `dataSet` - it will contain data arrays for different series. After all these are ready you have to encode them to JSON to render the charts. You can refer to this link to download multi-series chart sample with PHP and MySQL: https://www.dropbox.com/s/82femvv3yqnddkc/multi-series-mysql.zip?dl=0 -
Hi Thanks for reporting. We have identified the problem as issue and logged an improvement request for it. We will keep you posted about the same.
-
convertToFusionCharts secound parameter error?
Gagan Sikri replied to tssabo's topic in FusionCharts Free jQuery Plugin
Hi Thanks for reporting. We have identified the problem as issue and logged an improvement request for it. We will keep you posted about the same. -
Hi It is not possible to place labels inside Pie chart natively but can be done with the help of annotations. Please refer to this JSFiddle sample for the same: http://jsfiddle.net/sikrigagan/px79kjg5/9/ Please do not that annotations are static in nature and have to be manually placed inside the charts.