UNPKG

@progress/kendo-angular-mcp

Version:

Model Context Protocol for Kendo UI for Angular

2 lines (1 loc) 359 B
export declare const chartsInstructions = "\n## Charts Data Binding\n\nNever bind the Chart's data to a getter property. Using a getter causes the chart to rerender on every Angular change detection cycle.\n\nBAD: get chartData() { return [ /* data items */ ] }\nGOOD: public chartData = [ /* data items */ ];\nGOOD: public chartData = this.data.map(...)\n";