|
|
@@ -11,8 +11,8 @@ export default (selection, scales, options) => {
|
|
|
.attr('transform', `translate(0, ${options.heightWithoutMargin})`)
|
|
|
.call(
|
|
|
addGridlinesX()
|
|
|
- .tickSize(-options.heightWithoutMargin)
|
|
|
- .tickFormat('')
|
|
|
+ .tickSize(-options.heightWithoutMargin)
|
|
|
+ .tickFormat('')
|
|
|
);
|
|
|
|
|
|
// add the Y gridlines
|
|
|
@@ -20,8 +20,8 @@ export default (selection, scales, options) => {
|
|
|
.attr('class', `grid grid--y mod${options.module}__grid--y`)
|
|
|
.call(
|
|
|
addGridlinesY()
|
|
|
- .tickSize(-options.widthWithoutMargin)
|
|
|
- .tickFormat('')
|
|
|
+ .tickSize(-options.widthWithoutMargin)
|
|
|
+ .tickFormat('')
|
|
|
);
|
|
|
|
|
|
};
|