I've got a scatter line chart that I want to add data item notes that will be built from fields in the data item. Currently I'm able to use a template to format tooltips dynamically (see code below). Is there a similar way of accomplishing this with notes? The only samples I can see use the noteTextField on the kendo-chart-series-item which implies adding an additional field on source data items, generating the content for each item in code, and not having the ability to format the contents. I am I missing something?
<kendo-chart-series-item-tooltip> <ng-template let-dataItem="dataItem"> <span style="font-weight: bold">{{dataItem.productName}}</span> - Total Count <span style="font-weight: bold">{{dataItem.totalCount}}</span> <span style="font-weight: bold">{{dataItem.date | amDateFormat:'LL' }}</span> </ng-template><b </kendo-chart-series-item-tooltip>