angular.js:11358 RangeError: Maximum call stack size exceeded at kendo.all.min.js:78 at Object.a [as compile] (kendo.all.min.js:78) at e.support.browser.msie.e.support.browser.version.e.Observable.extend._compileFormula (kendo.all.min.js:77) at .<anonymous> (kendo.all.min.js:77) at e.support.browser.msie.e.support.browser.version.e.Observable.extend.batch (kendo.all.min.js:77) at e.support.browser.msie.e.support.browser.version.e.Observable.extend.fromJSON (kendo.all.min.js:77) at e.support.browser.msie.e.support.browser.version.e.Observable.extend.fromJSON (kendo.all.min.js:78) at new e.support.browser.msie.e.support.browser.version.e.Observable.extend.init (kendo.all.min.js:78) at new e.support.browser.msie.e.support.browser.version.e.ui.Widget.extend.init (kendo.all.min.js:85) at HTMLDivElement.<anonymous> (kendo.all.min.js:26)
I am trying to load about 29 thousand rows of data into the kendo spreadsheet and I get the above error. What I am doing is converting data from a ExcelPackage to a Telerik.Web.Spreadsheet workbook on the back-end. Then I convert the workbook via the ToJson method, send that data to the front-end, parse the received string data to a JSON and then load that JSON into the spreadsheet directly as a object or via the spreadsheet.fromJSON(data) method.
It works for less data, but doesn't for this. Also I can have hundreds of thousands of rows with no problems but with data it's another story. Can you tell me if there is some better way to do this, or how to work around this error.
Thank you in advance.
Hello,
I have a situation where i am clicking on a list of names and building chart series with some options on the fly like:
for (var i = 0; i < data.Data.length; i++) { chartOptions.valueAxis.push({ name: data.Data[i].name + '-' + i, min: data.Data[i].data.min(), max: data.Data[i].data.max(), title: { text: data.Data[i].name + '-' + i, visible: false }, visible: true }); } // Draw Series Axes for (var i = 0; i < data.Data.length; i++) { chartOptions.series.push({ axis: data.Data[i].name + '-' + i, data: data.Data[i].data, color: seriesOptions[i].color, highlight: { markers: { visible: true } }, name: data.Data[i].name + '-' + i, markers: { visible: true }, style: seriesOptions[i].style, type: seriesOptions[i].type, }); } // Draw Categories Axes chartOptions.categoryAxis.categories = []; for (var i = 0; i < data.Categories.length; i++) { chartOptions.categoryAxis.categories.push(data.Categories[i]); }Now what is happening is for each series that i add, one new value axis is added too. My question is:
Is it possible to keep all this functionality but somehow default to have just a single value axis shown all the time while also keep the value axis array in match with the series array ?
I have attached a picture in case i am not being clear with what i am trying to achieve.
Is there a way to draw bars in a waterfall chart NOT to scale?
I have a Waterfall chart that has a large starting value (thousands) and then 5 bars that are small numbers (hundreds or less), and then finally a summary bar (which is large).
How can I draw it so the middle bars are large, and the outer bars are "not to scale".
I have created a jsfiddle to illustrate the problem:
https://jsfiddle.net/fcg9scma/
The ideal solution would be to have the middle bars be larger, and yet maintain the size of the outside bars. I tried just dividing the large numbers by 10, but it seems to be a band-aid solution that does not work for a large variety of numbers. Is there a solution that doesn't involve trying to derive a percentage to reduce the data values for the large numbers (while re-adjusting the text in the labels) ? I
Thanks
SystemJS is not finding the dependent Kendo libraries with the 2016 versions of Kendo. It *does* load libraries that are loaded directly by my code. But when those libraries try to load *their* dependent libraries, SystemJS cannot find them.
I've setup two repositories to demonstrate the issue at:
https://github.com/brownieboy/kendo-systemjs-2016
https://github.com/brownieboy/kendo-systemjs-2015
The source code and config files for the two repositories should be the same. The only difference should be that they are using that one is using a 2016 version of Kendo and other is using a 2015 version. The 2015 version works and the 2016 doesn't.
Possible Related Issues
==================
http://www.telerik.com/forums/new-amd-definitions-in-v2016-1-112-are-incompatible-with-webpack
http://www.telerik.com/forums/issues-loading-latest-kendo-version-using-requirejs
Hi there,
I was wondering if it's possible to remove the # from the routing in a Kendo SPA application.
In angularjs you set the locationProvider to use "html5" mode and it relies upon the web server being smart enough to serve any request underneath the spa to the main spa page.
For example
http://www.example.com/spa/#/main
would become
http://www.example.com/spa/main
Thanks,
Devin
How can i achieve this?
I have tried with kendo drawing, but i haven't got it to work. Can someone provide me with a working example ?
Thank you.