|
|
@ -29,19 +29,11 @@ import { palette } from './colors'; |
|
|
|
|
|
|
|
|
|
|
|
import * as d3 from 'd3'; |
|
|
|
import * as d3 from 'd3'; |
|
|
|
|
|
|
|
|
|
|
|
import defaultsDeep from 'lodash/defaultsDeep'; |
|
|
|
|
|
|
|
import includes from 'lodash/includes'; |
|
|
|
|
|
|
|
import first from 'lodash/first'; |
|
|
|
import first from 'lodash/first'; |
|
|
|
import last from 'lodash/last'; |
|
|
|
import last from 'lodash/last'; |
|
|
|
import mergeWith from 'lodash/mergeWith'; |
|
|
|
|
|
|
|
import add from 'lodash/add'; |
|
|
|
|
|
|
|
import replace from 'lodash/replace'; |
|
|
|
|
|
|
|
import cloneDeep from 'lodash/cloneDeep'; |
|
|
|
|
|
|
|
import debounce from 'lodash/debounce'; |
|
|
|
import debounce from 'lodash/debounce'; |
|
|
|
import has from 'lodash/has'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const DEFAULT_MARGIN: Margin = { top: 30, right: 20, bottom: 20, left: 30 }; |
|
|
|
|
|
|
|
const DEFAULT_TICK_COUNT = 4; |
|
|
|
const DEFAULT_TICK_COUNT = 4; |
|
|
|
const DEFAULT_TICK_SIZE = 2; |
|
|
|
const DEFAULT_TICK_SIZE = 2; |
|
|
|
const MILISECONDS_IN_MINUTE = 60 * 1000; |
|
|
|
const MILISECONDS_IN_MINUTE = 60 * 1000; |
|
|
@ -173,6 +165,7 @@ abstract class ChartwerkPod<T extends CoreSerie, O extends Options> { |
|
|
|
height: this.height, |
|
|
|
height: this.height, |
|
|
|
width: this.width, |
|
|
|
width: this.width, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// TODO: use instanses instead of oblects
|
|
|
|
this.state = new PodState(boxPararms, this.coreSeries.visibleSeries, this.coreOptions.allOptions); |
|
|
|
this.state = new PodState(boxPararms, this.coreSeries.visibleSeries, this.coreOptions.allOptions); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|