Hi, I have an iframe whose width and height can be changed dynamically. When the iframe width is increased/decreased, the chart is adjusting accordingly. However, when iframe height is decreased, the chart isn't getting auto-adjusted (fit) and scroll bar appears.
I know there is a property called chartArea to set height and width. However, given an iframe dimensions, I would like to know if there are any properties so that the chart gets auto-adjusted to fit and display.
Thanks
Vamshi
Hi,
I can use kendo map as an image viewer?
In other words, i can produce my own custom tile provider that create the images flux from a static image?
marc.

Hello,
We have implemented a waterfall graph in one of our application. We display a graph for different years en like to make the annimation go from one year to the next. In de below sample is de default annimation. This animation makes it rather hard to see the difference between year 2018 and 209 for example because the annimation always start from the the bottom up.
http://g.recordit.co/aL5EaVS5Tw.gif
Thanks
Jan Willem
001.<html>002.<head>003.<link rel="stylesheet" type="text/css" href="http://cdn.kendostatic.com/2013.1.319/styles/kendo.common.min.css" />004.<link rel="stylesheet" type="text/css" href="http://cdn.kendostatic.com/2013.1.319/styles/kendo.default.min.css" />005.</head>006.<body>007.<script src="http://code.jquery.com/jquery-1.9.1.js" ></script>008.<script src="http://cdn.kendostatic.com/2013.1.319/js/kendo.all.min.js" ></script>009.<script>010.$(document).ready(function(){011./* -- Begin Doc ready --*/012.var dataSource = new kendo.data.DataSource(013.{014. transport:015. {016. read:017. {018. url: "http://apvs26/HttpServices/api/SchedulingShiftDays",019. type: "GET",020. dataType: "json",021. data: function( e )022. {023. console.log("data"); return{024. shift: "rbj01"025. };026. }027. },028. update:029. {030. url: function() { console.log("update invoked"); return "http://apvs26/HttpServices/api/SchedulingShiftDays";},031. type: "POST",032. dataType: "json",033. data: function( e )034. {035. console.log("update"); return{036. shift: "rbj01"037. };;038. }039. },040. destroy:041. {042. url: "http://apvs26/HttpServices/api/SchedulingShiftDays",043. type: "DELETE",044. dataType: "json",045. data: function( e )046. {047. console.log("delete"); return{048. shift: "rbj01"049. };;050. }051. }, 052. create:053. {054. url: "http://apvs26/HttpServices/api/SchedulingShiftDays",055. type: "PUT",056. dataType: "json",057. data: function( e )058. {059. console.log("create"); return{060. shift: "rbj01"061. };;062. }063. }, 064. parameterMap: function( data, operation )065. {066. console.log('Map called w/' + data ); console.log( 'operation=' + operation );067. var filter="$filter=";068. for(var property in data)069. {070. filter += property + " eq '" + data[property] + "'";071. }072. console.log('Resulting filter: ' + filter);073. return filter; 074. },075. schema:076. {077. model:078. { 079. id: "DayNumber", 080. fields:081. {082. DayNumber: { type: "number" },083. Hours: { type: "number" },084. StartTime: { type: "string" },085. EndTime: { type: "string" },086. DayName: { type: "string" },087. Description: { type: "string" }088. },089. set: function(e) {console.log( "set" ); }090. }091. }092. }093.});094. 095.$("#grid").kendoGrid({096. dataSource: dataSource,097. pageable: false,098. scrollable: false,099. toolbar: ["create"],100. columns: [101. { field: "DayNumber", title: "Day", width: "9%"},102. { field: "DayName", title:"Name", width: "15%" },103. { field: "StartTime", title: "Start Time", width: "8%"},104. { field: "EndTime", title:"End Time", width: "8%"},105. { field: "Hours", title:"Hours", format: "{0:n}", width: "9%"},106. { field: "Description", title:"Description" },107. { command: ["edit", "destroy"], title: "Actions", width: "18%" }108. ],109. editable: "inline"110. //,save: onSave111.});112. 113.function onSave(e)114.{115. console.log("in onSave()");116. return;117.}118. 119./* -- End Doc Ready -- */120.});121.</script>122.<div id="gridcontainer">123. <div id="grid"></div>124.</div>125.</body>126.</html>I can't find solution for this bug after update from 2017 to 2018 Kendo UI.
Everything is on the screenshot.
Thanks in advance


Hey There,
I am looking for a way to export several elements of a page. This PDF should be in A4 format and the individual elements should be arranged on it. Is this possible with Kendo UI?
Hi Guys,
I noticed yesterday a new internal build of Kendo UI was released - Version 2018.03.1212
But trying to download this update via Bower generates the following error
bower not-cached https://bower.telerik.com/bower-kendo-ui.git#2018.3.1212
bower resolve https://bower.telerik.com/bower-kendo-ui.git#2018.3.1212
bower ENORESTARGET No tag found that was able to satisfy 2018.3.1212
Additional error details:
Available versions in https://bower.telerik.com/bower-kendo-ui.git: 2018.3.1205, 2018.3.1129 .........
Have you stop releasing Bower packages or is this just an oversight?
Regards
Alan