Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人有如何将 Kendo Gauge 绑定到 XML 或 JSON 数据源的示例?
您可以尝试ajax响应json:
ajax
json
... success: function(data){ $("#mygauge").data("kendoLinearGauge").value(data.yourValue); } ...