UNPKG

unipept-visualizations

Version:
17 lines (14 loc) 384 B
export default abstract class Settings { /** * Total width of the visualization (in pixels). */ public width: number = 800; /** * Total height of the visualization (in pixels) */ public height: number = 800; /** * Are tooltips enabled when hovering the visualization? */ public enableTooltips: boolean = true; }