source: node_modules/recharts/lib/state/selectors/containerSelectors.js

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 589 bytes
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.selectMargin = exports.selectContainerScale = exports.selectChartWidth = exports.selectChartHeight = void 0;
7var selectChartWidth = state => state.layout.width;
8exports.selectChartWidth = selectChartWidth;
9var selectChartHeight = state => state.layout.height;
10exports.selectChartHeight = selectChartHeight;
11var selectContainerScale = state => state.layout.scale;
12exports.selectContainerScale = selectContainerScale;
13var selectMargin = state => state.layout.margin;
14exports.selectMargin = selectMargin;
Note: See TracBrowser for help on using the repository browser.