Skip to content

Commit

Permalink
Missed margin correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
pikka97 committed Jan 28, 2024
1 parent a95c8ae commit 94bcf87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/graphs/bar_chart_num_students_over_years_by_regions.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Load data from CSV file
d3.csv('/university_enrollment_dv/data/num_students_over_years_by_region.csv').then(function(data) {
// Set up the chart dimensions
const margin = { top: 40, right: 20, bottom: 30, left: 50 };
const margin = { top: 40, right: 20, bottom: 30, left: 100 };
const width = 800 - margin.left - margin.right;
const height = 400 - margin.top - margin.bottom;

Expand Down

0 comments on commit 94bcf87

Please sign in to comment.