Skip to content
This repository has been archived by the owner on Dec 10, 2021. It is now read-only.

fix: subject Remove margin to fit last label #900

Merged
merged 1 commit into from
Jan 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ function nvd3Vis(element, props) {
throw new Error(`Unrecognized visualization for nvd3${vizType}`);
}
// Assuming the container has padding already other than for top margin
chart.margin({ left: 0, right: 0, bottom: 0 });
chart.margin({ left: 0, bottom: 0 });

if (showBarValue) {
drawBarValues(svg, data, isBarStacked, yAxisFormat);
Expand Down