Comments
The Spreadsheet offers support for comments to be placed within each of its cells.
The following example demonstrates how a cell in the Spreadsheet can be initially configured to contain a comment.
@(Html.Kendo().Spreadsheet()
.Name("spreadsheet")
.Sheets(sheets =>
{
sheets.Add()
.Name("Sheet1")
.Columns(c =>
{
c.Add().Width(300);
})
.Rows(rows =>
{
rows.Add().Height(70).Cells(cells =>
{
cells.Add()
.Value("This cell has a comment.")
.Bold(true)
.Comment("Comment set on the cell with the Spreadsheet initialization.");
});
});
})
)