We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As noted (and found to be problematic) in #17, code similar to the following exist in all of the chart components:
const margin = {top: 20, right: 20, bottom: 20, left: 20}; const svgWidth = 540; const svgHeight = 500; const width = svgWidth - margin.left - margin.right; const height = svgHeight - margin.top - margin.bottom;
const x = scaleLinear() .domain([0, maxDistance]) .range([0, width]); const y = scaleLinear() .domain([0, 1]) .range([height, 0]);
Refactoring this duplicated configuration to a reusable component/function/hook would be wise.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As noted (and found to be problematic) in #17, code similar to the following exist in all of the chart components:
Refactoring this duplicated configuration to a reusable component/function/hook would be wise.
The text was updated successfully, but these errors were encountered: