13 lines
383 B
TypeScript
13 lines
383 B
TypeScript
|
|
/*
|
||
|
|
This file contains common constants which can be used across the
|
||
|
|
widget configuration file (index.ts), widget and component folders.
|
||
|
|
*/
|
||
|
|
|
||
|
|
export const VIEWBOX_WIDTH = 100;
|
||
|
|
export const VIEWBOX_HEIGHT = 100;
|
||
|
|
export const VIEWBOX_HEIGHT_HALF = 50;
|
||
|
|
export const VIEWBOX_CENTER_X = 50;
|
||
|
|
export const VIEWBOX_CENTER_Y = 50;
|
||
|
|
export const STROKE_WIDTH = 8;
|
||
|
|
export const MAX_VALUE = 100;
|