我正在使用kendoUI和角色。我有一個Kendo甜甜圈圖表如下。KendoUI將甜甜圈圖的系列標籤顏色更改爲系列顏色
<div class="center-pad" kendo-chart k-theme="['material']" k-chart-area="{height: 325, width: 480}"
k-series="[{ type: 'donut',
field: 'percentage',
labels: {visible: true, template: '${value} ${category} ${dataItem.color}', position: 'outsideEnd', font: '15px Lato-Regular'},
categoryField: 'source',
explodeField: 'explode'}]"
k-series-click="actionChartClick" k-data-source="actionChartData">
我想將系列標籤顏色作爲系列顏色。在模板中,我可以通過${dataItem.color}
我嘗試設置訪問模板顏色,
k-series="[{ ...
labels: {visible: true, template: '${value} ${category}', position: 'outsideEnd', font: '15px Lato-Regular', color: '${dataItem.color}'}"
但沒有奏效。 任何人都可以指導我在哪裏應該改變?