我有以下代码。
.chartBody {
width: 350px;
height: 200px;
}
<div class="chartBody" id="genreStrucChart"></div>
$("#genreStrucChart").kendoChart({
dataSource: setData(),
series: [
{ field: "Sample" },
{ field: "School" }
],
categoryAxis: {
field: "Counter"
},
legend: {
visible: true,
position: "bottom"
}
});
上面的代码可以正常工作,但它没有显示“Legend”。似乎缺少什么?
谢谢