Trying to build a Bullet diagram is exactly the same as marketing desires. The desired schedule is as follows:

How do you add labels at the top of the columns?
I tried to set the label property from the Kendo documentation:
labels: { visible: true, format: "{0}", font: "14px Arial", },
Here is my script that does not work:
$barChart = $("#bar-chart").empty(); $barChart.kendoChart({ theme: global.app.chartsTheme, renderAs: "svg", legend: { position: "bottom" }, seriesDefaults: { type: "column" }, series: [ { type: "verticalBullet", currentField: "score", targetField: "average", target: { color: "#444", dashType: "dot", line: { width: 1, } }, labels: { visible: true, format: "{0}", font: "14px Arial", }, data: [ { score: 93.7, average: 65.2, }, { score: 80.2, average: 22.2, }, { score: 60.8, average: 35.2, }, { score: 82.1, average: 45.2, }, { score: 74.2, average: 55.2, } ] } ], categoryAxis: { labels: { rotation: -45 }, categories: ["Sales & Contracting", "Implementation & Training", "Functionality & Upgrades", "Service & Support", "General"], line: { visible: false }, color: "#444", axisCrossingValue: [0, 0, 100, 100] }, tooltip: { visible: false } }).data("kendoChart");
Any help would be greatly appreciated.