sheetex - v1.3.0
    Preparing search index...

    Interface JustData

    需要快速保存的数据

    const data = {
    caption: '学生成绩',
    headers: ['序号', '姓名', '成绩'],
    data: [
    [1, '张三', 100],
    [2, '李四', 90],
    [3, '王五', 80],
    ],
    }
    interface JustData {
        caption?: string;
        headers?: string[];
        data: DataRow[];
    }
    Index

    Properties

    caption?: string

    表标题

    表标题将被以更大的字体加粗显示在第一行,并且合并居中显示,合并的列数参照表头(如果存在)或表数据第一行的列数

    headers?: string[]

    表头

    表头将被显示在第一或第二行(根据 caption 是否存在),文字加粗居中显示

    data: DataRow[]

    表数据