gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
22 lines (21 loc) • 717 B
TypeScript
export interface ScarfSettingsType {
scarfPlotId: number;
stimulusId: number;
groupId: number;
zoomLevel: number;
timeline: 'absolute' | 'relative' | 'ordinal';
/**
* The width of the scarf chart axis in set units.
* 0 = width is automatically calculated.
*/
absoluteGeneralLastVal: number;
/**
* The width of the scarf chart axis in set units for each stimulus.
* 0 = width is automatically calculated.
* The index of the array corresponds to the stimulus id.
* If the stimulus id is not in the array, the general width is used.
*/
absoluteStimuliLastVal: number[];
ordinalGeneralLastVal: number;
ordinalStimuliLastVal: number[];
}