or
markers: { size: 8, background: 'white', border: { color: 'blue', }}<div id="otdQaGrid"></div><!-- JavaScript -->$(document).ready(function () { dash.grid = $("#otdQaGrid").kendoGrid({ dataSource: { type: "json", transport: { read: { url: "/api/GetOtdAndQuality", } } }, columns: [{ field: "CustomerName", title: "Customer", width: 200 }, { field: "QualityAverage", title: "Avg. Quality" }, { field: "OtdAverage", title: "Avg. OTD" }, { field: "TotalParts", title: "# of Parts", width: 150 }, { field: "MeetsOtd", title: "MeetsOtd" }, { field: "YtdQuality", title: "YTD Quality", template: "<span class='inlinespark'>#: YtdQuality #</span>" }], height: 550, dataBound: function (e) { } });});