Hi,
When I run the sample in the DoJo ( http://dojo.telerik.com/@Insad/uBARI ) on the Opera browser you will see that an infinite loop starts, crashing with a stack overflow.
On other browser you might see the issue as well if the appropriate devtools are used :)
Can someone please explain what is wrong in this straight forward sample?
I can't figure out why this happens.
It is stopping large parts of our development at the moment so please can someone help me with this..
Best regards,
Insad
I have noticed that when I zoom in and out on both firefox and chrome, the time slot cells at times align and are misaligned with the header cells. I understand that a similar issue exists with the kendo grid (http://www.telerik.com/forums/2-bugs-when-zooming-a-grid), however our application needs to be compliant with WCAG 2.0. There is a resize clause specifying that "1.4.4 Resize text: Except for captions and images of text, text can be resized without assistive technology up to 200 percent without loss of content or functionality. (Level AA)" ( https://www.w3.org/TR/WCAG20/#visual-audio-contrast-scale).
Please advise.
Hello guys,
Seems like the custom gradients stopped working after the last release. Here is the links:
http://docs.telerik.com/kendo-ui/controls/charts/how-to/appearance/create-left-to-right-gradient-multi-color-values
http://dojo.telerik.com/
It looks like the chart API doesn't get the all dataviz gradients and instead it uses the default gradients. Any ideas how to fix this issue?

Hi everyone
I tried to use new kendo numerictextbox component with angular 2 but the component doesn't have proper styling.
When comparing with demo examples on kendo site http://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/ my local control doesn't have CSS attributes as demo example.
I installed latest "Theme & Styling" module: npm install --save @progress/kendo-theme-default@2.11.0 but it didn't help.
I suppose that @progress/kendo-theme-default@2.11.0 bundle doesn't contain CSS for numerictextbox component?
Any help?
Thanks
Vladan
Hello,
In case of using inner and outer form with the kendo-combo-box outer form sets dirty after setting datasource value: http://dojo.telerik.com/IBIxI/2
It is reproducible when ng-model has null value and works fine when it has any other value.
The same behavior for kendo-drop-down-list directive that used with select tag. ng-model has any value except null in this case: http://dojo.telerik.com/IvUKo

Hi,
I'm trying to save a users spreadsheet column configuration so that when they come back to a page the second time, the columns are the same as when they left. I'm using local storage to save twp attributes ( dataSource.options.schema.model.fields, spreadSheet.options.sheets[0].columns). There is only ever 1 sheet.
However - I cannot see any attribute in either of these objects which indicate a column is hidden. Is this something which is available? Or is the hiding done via the css display property?
Thanks,
Marc
In our chart we are building we are attempting to use multiple data sources in the chart, one being a remote json data source and the second being a local one that's values are generated from the remote one.
this is done so that the data series doesn't continue have values past a certain point and can can be cut off instead of having a slope down to zero to the next category axis point; a downside to an area chart. The effect can be seen in the first attached image. The slope happens at the lubber line, where there can be no data gathered from the future. The black line is the expected trend based on the first value so the data source has indexes extending beyond the current time where all of the other values are zero/null
The black line can be generated on the user side which fixes the slope to zero at the lubber line problem but the array it is stored in cannot be displayed. We've been following this example but we are having issues applying with to a remote and local data source. Our current chart has the Efficiency Field in the legend but displays no line in the chart, see the second photo for an example of the chart.
main code: eff is a local variable
<p> var eff = [];<br> var x = document.getElementById("CheckM");<br> $("#ChartFullDay-@unique").kendoChart({</p><p> dataSource: {<br> data: eff,<br> transport: {<br> read: {<br> url: "@Url.Action("ChartData", new { id = "SkillFullDay" })",<br> dataType: "json"<br> }<br> },<br> schema: {<br> model: {<br> fields: {<br> Label: { type: "string" },<br> AllValue: { type: "number" },<br> MValue: { type: "number" },<br> SValue: { type: "number" },<br> EValue: { type: "number" },<br> OValue: { type: "number" },<br> Efficiency: { type: "number"}<br> }<br> }<br> },</p><p> },<br> series: [{<br> field: "MValue",<br> name: "M",<br> color: "red"<br> }, {<br> field: "EValue",<br> name: "E",<br> color: "green"<br> }, {<br> field: "SValue",<br> name: "S",<br> color: "blue"<br> }, {<br> field: "OValue",<br> name: "O",<br> color: "yellow"<br> }, {<br> type: "line",<br> stack: false,<br> name: "Expected",<br> data: eff,<br> field: "EffValue",<br> color: "black"<br> }, {<br> type: "line", <br> stack: false,<br> field: "AllValue",<br> name: "Actual",<br> color: function () { return winningDayColor; }<br> }],</p>Goals
Problem
Thanks for the help!
I have a line chart with 10+ series. On legend hover I would like to highlight the hovered series and dim all other series
Is this scenario possible?
Hello,
I am using Kendo Spreadsheet for angular
I want to display spreadsheet inside the angular modal,
so whenever i open the modal,it displays correctly
but for the second time it doesnt display properly(all messed up UI) but as soon as I resize the window it shows properly.
I am attaching the screenshot for better explaination
$scope.openSpreadsheet=function(){$scope.modalInstance = $modal.open({templateUrl: 'spreadsheetmodal.html',scope: $scope$scope.spreadSheetOptionsEdit={toolbar: {home: ["open","exportAs"],insert: [[ "addColumnLeft", "addColumnRight", "addRowBelow", "addRowAbove" ],[ "deleteColumn", "deleteRow" ] ]}}}
In view-
<kendo-spreadsheet k-scope-field="spreadsheet" id="spreadsheet" k-options="spreadSheetOptionsEdit" k-sheets="sheetsEdit" ></kendo-spreadsheet>
