Skip to content

Commit a28aa7d

Browse files
committed
Remove disused cx and cy props from Background, ensure that background prop getter is only invoked when it's going to be used
1 parent bdd6128 commit a28aa7d

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

demo/js/components/victory-chart-demo.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,7 @@ class App extends React.Component {
182182
};
183183
const chartStyle = {
184184
parent: { border: "1px solid #ccc", margin: "2%", maxWidth: "40%" }
185-
}
186-
;
185+
};
187186
const axisStyle = {
188187
grid: { stroke: "grey", strokeWidth: 1 },
189188
axis: { stroke: "transparent" },
@@ -193,7 +192,7 @@ class App extends React.Component {
193192

194193
const bgStyle = {
195194
background: { fill: "#e6e6ff" }
196-
}
195+
};
197196

198197
return (
199198
<div className="demo">

packages/victory-chart/src/helper-methods.js

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ function getBackgroundWithProps(props, calculatedProps) {
5757
const backgroundProps = {
5858
height,
5959
polar: props.polar,
60+
scale: calculatedProps.scale,
6061
style: props.style.background,
6162
x: xCoordinate,
6263
y: yCoordinate,

packages/victory-chart/src/victory-chart.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,15 @@ export default class VictoryChart extends React.Component {
9292
getNewChildren(props, childComponents, calculatedProps) {
9393
const children = getChildren(props, childComponents, calculatedProps);
9494
const getAnimationProps = Wrapper.getAnimationProps.bind(this);
95-
const backgroundComponent = getBackgroundWithProps(props, calculatedProps);
9695

9796
const newChildren = children.map((child, index) => {
9897
const childProps = assign({ animate: getAnimationProps(props, child, index) }, child.props);
9998
return React.cloneElement(child, childProps);
10099
});
101100

102101
if (props.style && props.style.background) {
102+
const backgroundComponent = getBackgroundWithProps(props, calculatedProps);
103+
103104
newChildren.unshift(backgroundComponent);
104105
}
105106

packages/victory-core/src/index.d.ts

-2
Original file line numberDiff line numberDiff line change
@@ -662,8 +662,6 @@ export class VictoryPortal extends React.Component<VictoryPortalProps, any> {}
662662

663663
export interface BackgroundProps extends VictoryCommonPrimitiveProps {
664664
circleComponent?: React.ReactElement;
665-
cx?: number;
666-
cy?: number;
667665
height?: number;
668666
rectComponent?: React.ReactElement;
669667
width?: number;

packages/victory-core/src/victory-primitives/background.js

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ const Background = (props) => {
3030
Background.propTypes = {
3131
...CommonProps.primitiveProps,
3232
circleComponent: PropTypes.element,
33-
cx: PropTypes.number,
34-
cy: PropTypes.number,
3533
height: PropTypes.number,
3634
rectComponent: PropTypes.element,
3735
width: PropTypes.number,

0 commit comments

Comments
 (0)