Nabajeet

Members
  • Content count

    152
  • Joined

  • Last visited

Everything posted by Nabajeet

  1. Multiple currencies/suffixes in one chart

    Hi, Please note that whatever you add in displayValue inside the set attribute shall overwrite the actual value being provided. As such "<dataset seriesname='XYZ' dashed='1'><set value='100' displayValue=' Pcs'/> should show only ' Pcs' as value in the chart.
  2. Hi, These logs doesn't show which version of Java is being picked up by Tomcat. There might be some collision in the Java versions used by the compiler code an. Anyway you may check out this link for a sample source code implementing the Export Handler using JDK 1.7: https://www.dropbox.com/s/4pcxhl7s2yqdm4r/FusionChartsExportExample.zip?dl=0
  3. Multiple currencies/suffixes in one chart

    Hi, It is not possible to add different numberSuffix to different datasets. However you can set displayValue statically for each set you want to have a different numberSuffix. Please check out this fiddle for a demo: http://jsfiddle.net/nabajeet_fusioncharts/6jg1t4ac/
  4. Hi, We have checked the war file on jdk 1.7.0_01, its running fine on our side. Could you post the full log section - including the log entry with the error message itself. Have you looked through the logs to see what it says about which version of Java it's using?
  5. Hi, Please note that Fusion Charts Export Handler that comes along with FusionCharts Suite XT-3.6.0 has been developed using JDK 1.7, sorry for the error in the previous post. Since you are using version 1.7 of Java the problem you have stated should not arise. I assume that your problem has arise because Tomcat is not starting with the correct version of Java when running externally. Please look through the startup scripts carefully to find where it picks up the version of Java to run. You should also check the startup logs to see whether they indicate which version is running. You can check out this link for further deatils: http://stackoverflow.com/questions/8982730/unsupportedclassversionerror-unsupported-major-minor-version-51-0-unable-to-load
  6. Hi, Please use macros to position the annotations, then the placement will be similar in all environments. Please check this fiddle: http://jsfiddle.net/nabajeet_fusioncharts/a2389zyv/ Also you can check out macros here: http://docs.fusioncharts.com/tutorial-advanced-charting-annotations-dynamically-positioning-annotations-using-macros.html
  7. Hi, FusionCharts Exporter has been tested with JDK 1.5.
  8. Color won't show after upgrade

    Hi, Glad that your issue was resolved.
  9. Color won't show after upgrade

    Hi, Please make sure you have copied all the required files properly from the js folder of the download package and included them properly in your webpage. Also make sure you cleared the browser cache after upgrading. Please refer here for more details: http://docs.fusioncharts.com/tutorial-setup-upgrading-from-previous-versions.html If this doesn't help please share a scaled down sample of your code so that we may replicate your issue on our side.
  10. Hi, Thank you for your patience. Could you please upgrade your current version to the latest, i.e, FusionCharts Suite v3.6.0, that will resolve your reported issue of vertical centering of annotation texts. You can check out this fiddle: http://jsfiddle.net/XhdN4/35/ You can check with the version history from here: http://www.fusioncharts.com/version-history/ Also, we have released updated plugins, wrappers and export handlers which can be checked from here: http://www.fusioncharts.com/extensions/ To avail this licensed release, you would need to re-Download the entire package from the My Orders section of FusionCharts Product Update Center. PUC URL: www.fusioncharts.com/puc/ To download the Evaluation version of FusionCharts Suite XT v3.6.0, please visit the link: http://www.fusioncharts.com/download/
  11. Pareto issue when Show Negative Value

    Hi, Welcome to FusionCharts Forum. It is a property of Pareto chart that all data must be positive. Negative values are ignored. You can check out this link for more information: http://ncss.wpengine.netdna-cdn.com/wp-content/themes/ncss/pdf/Procedures/NCSS/Pareto_Charts.pdf Thanks
  12. FusionCharts Spring MVC Example

    Hi, We do not have any implementation in Titanium Alloy as of now. We shall need some time to implement the same. Thanks.
  13. Product Roadmap - Java exporter

    Hi Alex, Java Export Handler will be included in the next release. Thanks
  14. Product Roadmap - Java exporter

    Hi Alex, The next release is due at end of next week.
  15. Annotating a candlesticks trendset

    Hi, Welcome to FusionCharts Forum. As you have stated macros are not supported for trend sets. You have to position the annotations statically for trendsets. However you can align the annotation to the center of the dataset using macros. Check this fiddle for a demo: http://jsfiddle.net/nabajeet_fusioncharts/1j6kccko/
  16. Would this chart possible?

    ​Hi, Welcome to FusionCharts forum. We do not have a chart that exactly matches your requirement. But based on your description on allotment of room to different parties we suggest you to use Gantt Charts, it has all the features you require plus some added features required for project planning. You can check out some Gantt Charts here: http://www.fusioncharts.com/charts/gantt-charts/​
  17. Zoomline DynamicAxis

    Hi, This feature is in our wishlist, but we cannot commit on the timeline as of now.
  18. StackedColumn2D issue

    Hi Ravikumar, We are unable to replicate your issue on our side, please check screenshot. Can you please send a screenshot or xml/json sample of the problem you are facing.
  19. FusionCharts Spring MVC Example

    Hi, Welcome to FusionCharts Forum, Please find a FusionCharts sample implemented using Spring MVC in this dropbox link. Here the data is provided using an array implemented in a Java class: https://www.dropbox.com/s/o7ofdzhuqf55dpf/FusionChartsSpringMVC.zip?dl=0
  20. Product Roadmap - Java exporter

    Hi Alex, Welcome to FusionCharts Forum. We have Export Handlers for PHP and .NET. As of now we don't support J2EE Export Handlers, but we are hoping to implement it in the next release.
  21. Struggling to find which attribute this is

    ​Hi, Please use the statement FusionCharts.setCurrentRenderer("javavscript") if you want to display the chart like the latest JavaScript Version. You also need to replace chart type StackedBar2D.swf to StackedBar2D. We have tried to replicate your issue in our side, but the axis line you are stating don't appear in our side in version fusioncharts/3.3.1-sr3. Please refer to 1st image. Moreover the divLineAlpha attribute you have stated controls the transparency ​of the vertical line as highlighted in the 2nd image attached. You can remove these vertical lines setting divLineAlpha to 0 or numDivLines to 0
  22. Y-axis Auto Scaling Problem

    Hi, While upadating the data from the database, you can find the maximum among the values and update the yAxisMaxValue using setChartAttribute() method. Please refer to: http://docs.fusioncharts.com/FusionCharts.methods.html#setChartAttribute
  23. Load FusionCharts in JSP from MySQL

    Hi, You can create a JSON array in a Java object to retrieve the data from DB and pass this JSON Object to the JSP using JSTL. Please check this drop box link for a demo sample: https://www.dropbox.com/s/p22835owx2cke6q/DB_JSP.rar?dl=0​
  24. Table chart in fusioncharts.

    Glad we could be helpful.