or
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head> <title>Test Page</title> <script src="js/jquery-1.7.1.min.js" type="text/javascript"></script> <script src="Scripts/kendo.all.min.js" type="text/javascript"></script> <link href="styles/kendo.common.min.css" rel="stylesheet" /> <link href="styles/kendo.default.min.css" rel="stylesheet" /> <script src="js/json2.js"></script></head><body> <div id="example" class="k-content"> <div id="grid"></div> <input id="btnView" type="button" value="view" onclick="JavaScript: rebind();" /> <script> function rebind() { var gridDS = $("#grid").data("kendoGrid").dataSource; gridDS.read(); } $(document).ready(function () { $("#grid").kendoGrid({ dataSource: { type: "odata", transport: { read:"http://XYZ/JSON/Data", contentType: "application/json; charset=utf-8",
type: "GET", dataType: "json" }, success: function (e) { alert("Error: " + e.error); }, schema: { data: "Result" }, error: function (e) { debugger; alert("Error: " + e.errorThrown); }, change: function (e) { alert("Change"); }, requestStart: function (e) { //alert("Request Start"); }, pageSize: 10, serverPaging: true, serverFiltering: true, serverSorting: true }, height: 250, filterable: true, sortable: true, pageable: true }); }); </script> </div></body></html>Hello guys,
I think I’ve found a bug in kendo’s donut chart in IE 7.
The problem occurs when the chart has a category whose value is less than 1 (e.g. 0.1). In that case the category appears in the middle of the donut chart.
Repro:
http://jsfiddle.net/ebD8M/2/
Do you know of any workaround?
Best regards,
ilo