UNPKG

@edanchenkov/react-d3-graph

Version:

React component to build interactive and configurable graphs with d3 effortlessly

22 lines (20 loc) 636 B
const HIGHLIGHTED = 'H'; const MARKER_SMALL_SIZE = 16; const MARKER_MEDIUM_OFFSET = 2; const MARKER_LARGE_OFFSET = 4; // internal marker flavors for cross referencing const MARKERS = { MARKER_S: 'marker-small', MARKER_SH: 'marker-small-highlighted', MARKER_M: 'marker-medium', MARKER_MH: 'marker-medium-highlighted', MARKER_L: 'marker-large', MARKER_LH: 'marker-large-highlighted' }; // hard coded aggregation of the different sizes available for markers const SIZES = { S: 'S', M: 'M', L: 'L' }; export { HIGHLIGHTED, MARKER_LARGE_OFFSET, MARKER_MEDIUM_OFFSET, MARKER_SMALL_SIZE, MARKERS, SIZES };