As this is not supported in the jquery version, is it supported in the new angular 2 control?

Hello,
I am trying to display an area chart, using dates as categories with values every 30min and xAxis label every hour.
However, areas are not rendered properly : it's showing vertical lines instead. I think it's a bug, because it's rendering fine with another chart type (for example line chart).
You can see the issue on the attached screenshot and code/demo here : http://jsbin.com/votegowidu/edit?html,output
Thanks in advance.
Best regards

while capturing the screenshot of the DOM below with kendo.drawing.drawDOM function as PNG with the js script provided below,the then callback is executed, however, the done callback never executes. The image tag has a src attribute pointing to an SVG image. I understand that the SVG will be ignored, but i am expecting to get an image without SVG content in the end. However again the done callback never gets called.
<!-- The DOM-->
<span class="grouping-field label label-primary" data-fieldkey="*SERVER.FLD0000007"> <img src="http://localhost:183/Content/images/svg/dimensionAsc.svg"> Month <span aria-hidden="true" class="field-close glyphicon glyphicon-remove"></span></span>
// js codevar draw = kendo.drawing; draw.drawDOM($(".grouping-field")) .then(function(root) { // Chaining the promise via then return draw.exportImage(root); }) .done(function(data) { // Here 'data' is the Base64-encoded image file kendo.saveAs({ dataURI: data, fileName: "calendar.png" }); });Hi All,
I'm a beginner in kendo UI and i want to implement two export buttons ( excel and pdf) on my grid. Can someone help me?
Best regards
The documentation here...
http://docs.telerik.com/kendo-ui/install/bower#install-kendo-ui-professional-bower-package
Says that this repository exists...
https://bower.telerik.com/bower-kendo-ui.git
But I don't see that it does.
Which causes errors and keeps me from managing my kendo-ui js libraries the same as my other client-side libraries. Is there some trick to getting access to this repository? (I have a DevComplete License)
Thanks.

Hi,
I'm working on MultiSelect + JSON as data source, i'm having issue to display the json result in Multiselect.
It display to me as undefined.
Below is my multiselect code
var multiselect = $("#ddlSelectCostCenter").data("kendoMultiSelect") var dataSource = new kendo.data.DataSource({ data: [], pageSize: 500 }); multiselect.setDataSource(dataSource); if (result !== "") { dataSource = new kendo.data.DataSource({ type:"json", data: JSON.stringify(result), pageSize: 500 }); multiselect.setDataSource(dataSource); multiselect.dataTextField = "Name"; multiselect.dataValueField = "Value";}
My Json is like below.
[{"Value":"0000","Name":"ALL"},{"Value":"0111","Name":"0111 ~ Facility Management"},{"Value":"0113","Name":"0113 ~ NP Logistics Setup"},{"Value":"1001","Name":"1001 ~ TV KL Tec President Office"},{"Value":"2001","Name":"2001 ~ North Chip Engineering"},{"Value":"2002","Name":"2002 ~ TV AM CHIP"},{"Value":"2003","Name":"2003 ~ AutoMount Metecon"},{"Value":"2004","Name":"2004 ~ HM Office"},{"Value":"2005","Name":"2005 ~ BOARD BIZ-HM Office"},{"Value":"2006","Name":"2006 ~ Sony MFC Sys"},{"Value":"2007","Name":"2007 ~ AM North Oth"},{"Value":"2009","Name":"2009 ~ TV AM Office"},{"Value":"2010","Name":"2010 ~ AM North DISC"},{"Value":"2011","Name":"2011 ~ AM North CHIP"}]
What do I missed out?
Thank

Kendo Team,
Is there a way to make a row selectable, even if the user clicks on an non-editable row? From my perspective, it seems I need to utilize a click event handler on the grid and progammatically select the row. Is there an easier way?
As a follow up to a related issue, I noticed there are some performance issues in IE with grids having many columns, particularly when the grid's selectable property is set. Do you have any more insight about this phenomenon? How do you think manually selecting the rows via the grid's click event will affect performance IE, assuming you know the deeper cause of IE's slow response with large grids?
Thank you..

