25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
573 B

  1. export const VERT_SPACE_OUTSIDE_BASE_CHART = 40;
  2. export const TRANSLATE_Y_BASE_CHART = 20;
  3. export const LEFT_MARGIN_BASE_CHART = 60;
  4. export const RIGHT_MARGIN_BASE_CHART = 40;
  5. export const Y_AXIS_MARGIN = 60;
  6. export const INIT_CHART_UPDATE_TIMEOUT = 400;
  7. export const CHART_POST_ANIMATE_TIMEOUT = 400;
  8. export const DEFAULT_AXIS_CHART_TYPE = 'line';
  9. export const AXIS_DATASET_CHART_TYPES = ['line', 'bar'];
  10. export const BAR_CHART_SPACE_RATIO = 0.5;
  11. export const MIN_BAR_PERCENT_HEIGHT = 0.01;
  12. export const LINE_CHART_DOT_SIZE = 4;
  13. export const DOT_OVERLAY_SIZE_INCR = 4;