は、この例を参照してください円グラフの内側にラベルを配置します: http://jsfiddle.net/mcLEb/、どのように私は
jQuery("#grid").kendoChart(
{
theme: jQuery(document).data("kendoSkin") || "default",
legend:
{
position: "bottom"
},
chartArea: {
height: 200
},
seriesDefaults:
{
labels:
{
visible: true,
format: "{0}%",
font: "12px Arial",
center: '5%'
}
},
series: [{
type: "pie",
data:[70,20,10]
}],
tooltip:
{
visible: false,
template: "${ category } - ${ value }%"
},
title: { padding: 1, margin: 1 },
seriesColors: ["#d15400", "#d2d2d2","#01619e"],
plotArea: { margin: { left: 50, right: 50 } },
});
より明確化: 今、ラベルが円グラフでの外に位置しています対応するパイセクションを指す矢印。私は、ラベル自体を対応するパイセクションの内側に入れたいと思っています。
私は、パイセクションが実際のテキストよりも小さくなる可能性があることを認識していますが、それを処理します。
ありがとうございます!
[ドキュメントリンク](http://docs.telerik.com/kendo-ui/api/javascript/dataviz/ ui/chart#configuration-series.labels.position)ラベルの位置 – reergymerej