unipept-visualizations
Version:
The Unipept visualisation library
17 lines (14 loc) • 384 B
text/typescript
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;
}