UNPKG

478 BPlain TextView Raw
1/**
2 * number of bins before switching to dense mode
3 * @internal
4 */
5export const DENSE_HISTOGRAM = 19;
6/**
7 * minimal width of a column to show the label in the header
8 * @internal
9 */
10export const MIN_LABEL_WIDTH = 30;
11/**
12 * number of milliseconds to wait before a hovered canvas row will be replaced with a DOM one
13 * @type {number}
14 * @internal
15 */
16export const HOVER_DELAY_SHOW_DETAIL = 500;
17
18export const GUESSED_ROW_HEIGHT = 18;
19export const GUESSES_GROUP_HEIGHT = 40;