默认本身就是有1行的固定行作为表头,你如果要设为多行的话,可以参考下面的代码用HeaderTemplate设置
- .HeaderTemplate(builder =>
- {
- builder.RowCount(2);
- builder.Cells(c =>
- {
- c.Set(0, 0, 2, 1, "Name");
- c.Set(0, 1, 2, 1, "Currency");
- c.Set(0, 2, 1, 4, "Performance");
- c.Set(0, 6, 1, 4, "Allocation");
- });
- })
复制代码
|