From Kendo Angular2's documentation SeriesItemComponent
it is possible to set the innerRadius for a Donut Chart using the visual function. How can I get the instance of the donut chart so that I can invoke this function? I tried treating it as a field and it didn't work.
<kendo-chart-series-item
type="donut"
[data]="pieData"
field="value"
categoryField="category"
[visual.innerRadius]=10>
</kendo-chart-series-item>
Also tried
[visual]={ innerRadius: 10 }
Any help is appreciated. Thanks!