Itsmejag

Members
  • Content count

    10
  • Joined

  • Last visited

About Itsmejag

  • Rank
    Junior Member
  1. Hi, Got updates version of fusion charts. No use, still getting errors. On home page charts displaying fine, but when we transfer from page to page the following errors are getting displayed. Please find the attachment with errors against each browsers.
  2. Pie chart Shadow cut issue in Firefox

    Hi, Please find the sample code. Run pieChartSample file using fire fox. Charts.zip
  3. Hi We are using latest version of fusionchart js files to render our charts. The problem is with Pie chart shadow cut in mozilla firefox. The pie chart is displaying fine other browsers but in firefox we could see a shadow cut on right and bottom side. Fusion chart version: 3.3.1-sr2.19840 Fire fox version : 24 Sorry, Unable to attach the image/file because of permissions on this page Please find the sample code snippet below. var chartItem = new FusionCharts("Pie2D", "UniqueId", "100%", "100%"); chartItem.setJSONData({ "chart" : { // chart customizing parameters "showPercentValues" : 0, "showLabels" : 0, "showBorder" : 0, "showValues" : 0, "bgColor" : "FFFFFF", "showPlotBorder" : 1, "plotBorderColor" : "FFFFFF", "plotBorderThickness" : "1", "enablesmartlabels" : 0, "numberPrefix" : "%", "chartRightMargin" : "-17", "chartTopMargin" : "-17", "chartBottomMargin" : "-17", "chartLeftMargin" : "-17", "showShadow" : "1", "startingAngle" : 90, "enableRotation" : 0, "animation" : 0, "slicingDistance" : "0" }, "data" : chartData chartItem.render("div id"); Thanks, Jag
  4. Fusion charts as friendly as tricky

  5. Hi, I am using latest version of fusion chart, While displaying the pie chart, its showing the following error in the browser console. Problem exists in almost all the browsers. SCRIPT5007: Unable to get property 'show' of undefined or null reference FusionCharts.HC.js, line 768 character 188 I am using below list of js files to render fusion charts across the browsers. FusionCharts.HC.Charts.js FusionCharts.HC.js FusionCharts.js jquery.min.js I am using YUI version 2.8.2 Thanks, Jag
  6. Hi Sumedh, What I have observed is, The latest updated fusion chart is not displaying popup properly. This is happening only in IE7 and IE8. The width of pop up is correct but the height is very less than the actual display. In a result it showing a white space as pop up in IE7 and IE8. Its displying as expected in all other browsers. please find the sample code . pie chart using java script function pieChart ("HTML <div>idvalue", parameter) { YUE.onDOMReady(function() { var chartItem = new FusionCharts("Pie2D", "randomNumberhere", "100%", "100%"); var chartData = []; var dataElements = parameter.elements; for ( var i = 0, len = dataElements.length; i < len; i++) { var element = dataElements; if (typeof (element.value) != "undefined" && typeof (element.color != "undefined")) { chartData.push({ "value" : element.value, "color" : String(element.color) }); } } dataArrLen = chartData.length; chartItem.setJSONData({ "chart" : { "showPercentValues" : 0, "showLabels" : 0, "showBorder" : 0, "showValues" : 0, "bgColor" : "FFFFFF", "showPlotBorder" : 1, "plotBorderColor" : "FFFFFF", "plotBorderThickness" : "1", "enablesmartlabels" : 0, "numberPrefix" : "%", "chartRightMargin" : "-17", "chartTopMargin" : "-17", "chartBottomMargin" : "-17", "chartLeftMargin" : "-17", "showShadow" : "1", "startingAngle" : 90, "enableRotation" : 0, "animation" : 0, "slicingDistance" : "0" }, "data" : chartData }); if (dataArrLen == 1) { chartItem.setChartAttribute("plotBorderThickness", "0"); } chartItem.render("HTML <div>idvalue"); }); }; I am using YUI 2.8.2 version. Thanks, Jag
  7. Hi Sumedh, Got latest update v3.3.1 - Service Release 2, I'll check the issue and let you know, I have a Quick doubt, like 3.2.2 version latest version FusionCharts.js and jquery.min.js files are also showing lot of missing semicolon errors in eclipse IDE view. ? Are they causing errors in browser console ? Do need to place any other files in fusioncahrts folders apart from FusionCharts.js, FusionCharts.HC.js, FusionCharts.HC.Charts.js andjquery.min.js files ? Thanks, Jag
  8. Hi, We have licence for FusionCharts XT (v3.2.2) SR 5. I had put FusionCharts.HC.js, FusionCharts.HC.Charts.js andjquery.min.js files in a folder fusioncahrts and started using fusion charts java script mode. No swf files or no other files in the folder. Its working fine in all the browsers but not in IE7 & 8. It supposed to display charts using flash/some other manner as these 7&8 don't have HTML5 canvas element support. While displaying the charts in these browsers, it displaying errors in browser's console. Those script errors are from above fusion chart script files. I can't put all errors in browser console errors as it is a secured site. SCRIPT16389: Failed FusionCharts.HC.js, line 224 character 348 Same errors are coming from jquery.min.js file too.. Because of these errors , user can not proceed further. by the way, we have around 10 pie charts to display in a single screen. Is it a memory leak issue ? . or chart configuration values issue ? Please help.
  9. Hi All, I got a situation, during the fusion chart development. We are using bar charts, instead of displaying the value we are displaying a custom message on the data plot area using the attribute "displayValue". the problem is, we are using two different colors for dataplots. The display value's font color should be in contrast with dataplot colors. But I am unable to customize (use different font color) display value. Is it a limitation ? . Do we have any way to make it work. ? I am using FusionCharts XT(v3.2.2) SR5 (1st November, 2012) version. Thanks, Jag