Search the Community

Showing results for tags 'error'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 8 results

  1. After refreshing a chart by using a dispose() method followed by redefining and recreating the fusionchart I'm getting the following warning when hovering or moving the cursor over the 'updated' chart.: Uncaught TypeError: this._env is undefined This is on line 13 of fusioncharts.js This is for version 3.15.2. Seems that the function is falsely assuming that the value exists. So, there are no bounds checking going on.
  2. So I'm using Multi Axis Line Chart with Date range changing option(1 Day, 7 Day, 1 Month, 3 Month, etc..). After creating this chart, whenever I try to change the date range, it gives me this error. What does it mean? Is it something to do with my chart options?
  3. My web application is meant to be able to export server-side generated charts with a save button. However, upon trying to save any charts that have been displayed in the application, I am greeted with a 404 error page from JBoss. I'm running Linux Mint 17.3. The web application runs on top of Apache, JBoss 3.0.0-CR2, and Java SDK 1.7. It was built with Maven. I've attached a screenshot below. My question is this: why am I getting a 404 error, and where does the issue actually come from?
  4. Hi all, Recently I've encountered a problem with zoom scatter chart and IE. I noticed that the same problem persists on fusioncharts official web site. Every time when I go over the bubble (data plot) with my mouse pointer an error occurs. The error text is: Object doesn't support this action If you open this link - http://www.fusioncharts.com/dev/chart-guide/zoom-scatter-chart/introducing-the-zoom-scatter-chart.html in IE you should see this error in the console when you go over the bubble with your mouse pointer. See attached image (IE version). Any ideas?
  5. Hi, While upgrading from version v1.1.8.0 to v2.4.0.2 many / all our charts will be broken. The error we occured is: WebPart can't be loaded. Please contact your site administrator or write to Collabion Support. Column 'CategoriesSortColumn' does not exist. It may have been deleted by another user. at Microsoft.SharePoint.SPFieldCollection.GetField(String strName, Boolean bThrowException) at Microsoft.SharePoint.SPListItem.GetValue(String strName, Boolean bThrowIfValueMissing, Boolean bThrowIfFieldMissing) at Collabion.Charts.DAL.Managers.ChartConfigurationManager.b__10_0(SPListItem item) at Collabion.Charts.DAL.Managers.ChartConfigurationManager.<>c__DisplayClass10_1.b__2(SPListItem i) at Collabion.Charts.DAL.ListHelper.Get[T](SPWeb web, String listTitle, SPQuery query, Func`2 converter) at Collabion.Charts.DAL.Managers.DataManager.Get[T](SPQuery query, Func`2 converter) at Collabion.Charts.CollabionChartWebPart.PreRenderWebPart() at Collabion.Common.SharePoint.Base.WebParts.WebPartBase.OnPreRender(EventArgs e) Method: Microsoft.SharePoint.SPField GetField(System.String, Boolean) File: Line: 0 Hide... For example export for old (upgraded v1.1.8.0 -> v2.4.0.2) chart and for same new (created with v2.4.0.2) chart available in attach We have many charts and re creation all of them by WebPart Editor is unacceptable Is available any solutions for this issue? New_chart.xml Old_chart.xml
  6. Chart type not supported

    I have got a problem about using this plugin on 3.9 version. When I use the current version the error "Chart type not supported" appears in some graphics. However, when using version 3.3 the error does not occur. Follows the returned error when active debug: "[FusionCharts] fired "error" event. #11171116151 FusionChartsHC-interface~renderer.load Error >> Unable to load required modules and resources: charts". I'm using import fusioncharts.js and fusioncharts.jqueryplugin.js. The other libraries are in the same directory (fusioncharts.charts.js and fusioncharts.widgets.js). Help?
  7. Hi Friends, Im new working with Fusion charts, we are working with a ui using an updatepanel with diferent links, im using the documentation above: http://docs.fusioncharts.com/charts/contents/guide-for-web-developers/vbnet/VB_UpdatePanel.html Right now, on the first page load the graphics is working normally. The problem is when i click on the link i need the graphic appear but i having problem with the updatepanelhook.fusioncharts.js , on this line : if (html.search(/\<script[\s\S]+?\<\/script\>/i) >= 0) { it seams that html.search dont find the script. Javascript code problems.
  8. Hi All. I am using FusionCharts XT 3.3.1-sr2.19840 to render a javascript chart and I get the following error: Cannot read property 'width' of undefined The snippet code that throws this error is (FusionCharts.HC.js): getSmartText: function (d, e, q, l) { if (!this.init) return !1; if (d === void 0 || d === null) d = ""; var v = { text: d, maxWidth: e, maxHeight: q, width: null, height: null, oriTextWidth: null, oriTextHeight: null, oriText: d, isTruncated: !1 }, i = !1, k, b, f, a, g = -1, c = -1, t = -1, x = this.container, J = this.context, ja = g = 0, la, r = [], w = 0, u = this.showNoEllipses ? "" : "...", g = this.lineHeight, V = function (a) { for (var a = a.replace(/^\s\s*/, ""), b = /\s/, g = a.length; b.test(a.charAt(g -= 1)); return a.slice(0, g + 1) }; la = J ? function (a) { return J.measureText(a).width; } : function (a) { x.innerHTML = a; return x.offsetWidth }; In some situations (generally when a = "") the call J.measureText (a) returns undefined and the next call (.width) throws the error. I could not identify why this call returns undefined, or why a = "". Can someone help me with this? Thanks in advance, Felipe Odoni