Gagan Sikri

Moderators
  • Content count

    115
  • Joined

  • Last visited

Everything posted by Gagan Sikri

  1. Chrome Refuses Exportchart()

    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?
  2. 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.
  3. Render Chart in Email

    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.
  4. 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.
  5. 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.
  6. Whisker charts - adding an extra point

    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
  7. Chart Not Displayed

    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
  8. Fusion Chart and Angular JS $HTTP request

    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.
  9. Angular JS fusion Chart

    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.
  10. Click Event Supported Lengend

    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/
  11. 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.
  12. Java Private Export Server

    Hi Can you tell us for which operating system you are facing this issue?
  13. Overlap of labels

    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/
  14. 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.
  15. Zoomscatter tooltip location

    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/
  16. 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/
  17. 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
  18. 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.
  19. Dynamically Populating The (X,y) Cordinates...

    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.
  20. 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/
  21. drawing lines of zoomscatter charts

    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.
  22. MySql Values with Array - Stacked Column

    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
  23. Vertical Line with multi-series line chart

    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.
  24. 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.
  25. Pie Chart Data

    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.