mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-17 22:08:00 +08:00
13 lines
362 B
JavaScript
13 lines
362 B
JavaScript
// jshint esversion: 6
|
|
import _ from "lodash";
|
|
|
|
const paddingRight = 120;
|
|
const continuousChartWidth = 340;
|
|
|
|
export const margin = { top: 66, right: 110, bottom: 20, left: 60 };
|
|
export const width = 340;
|
|
export const height = 340 - margin.top - margin.bottom;
|
|
export const innerHeight = height - 2;
|
|
|
|
export const devicePixelRatio = window.devicePixelRatio || 1;
|