Is it possible to have rounded ends on a sparkline? Below is an image of the component used multiple times in a grid, and the component template.
<kendo-sparkline
type="bar"
[data]="score"
[transitions]="true"
[seriesDefaults]="{labels: {background: 'none', visible: true, format: '{0}'}, color: getBarColor(score), bar: { size: 6 } }"
[tooltip]="{visible: false}"
>
<kendo-chart-area opacity="0" [width]="100"></kendo-chart-area>
<kendo-chart-value-axis>
<kendo-chart-value-axis-item
[min]="0"
[max]="130"
[reverse]="true"
>
</kendo-chart-value-axis-item>
</kendo-chart-value-axis>
</kendo-sparkline>