Interface IEngineRankingOptions

interface IEngineRankingOptions {
    animation: boolean;
    customRowUpdate: (row: HTMLElement, rowIndex: number) => void;
    flags: ILineUpFlags;
    levelOfDetail: (rowIndex: number) => "high" | "low";
    selectionActivateFilter: string | boolean;
}

Properties

animation: boolean
customRowUpdate: (row: HTMLElement, rowIndex: number) => void
levelOfDetail: (rowIndex: number) => "high" | "low"
selectionActivateFilter: string | boolean