@mathstack/viz 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/mathstack-viz.mjs +0 -5
- package/fesm2022/mathstack-viz.mjs.map +1 -1
- package/lib/axes/base/xy-axis-base.d.ts +0 -1
- package/lib/axes/ordinal/ordinal-axis.d.ts +0 -1
- package/lib/axes/quantitative/quantitative-axis.d.ts +0 -1
- package/lib/axes/x/x-axis.d.ts +0 -1
- package/lib/axes/x-ordinal/x-ordinal-axis.component.d.ts +0 -2
- package/lib/axes/x-quantitative/x-quantitative-axis.component.d.ts +0 -1
- package/lib/axes/y/y-axis.d.ts +0 -1
- package/lib/axes/y-ordinal/y-ordinal-axis.component.d.ts +0 -2
- package/lib/axes/y-quantitative-axis/y-quantitative-axis.component.d.ts +0 -1
- package/package.json +2 -2
|
@@ -1807,13 +1807,8 @@ class XyAxis extends XyAuxMarks {
|
|
|
1807
1807
|
this.setScale();
|
|
1808
1808
|
this.setAxisFromScaleAndConfig();
|
|
1809
1809
|
this.drawAxis();
|
|
1810
|
-
this.doNothing();
|
|
1811
1810
|
this.isFirstDraw = false;
|
|
1812
1811
|
}
|
|
1813
|
-
doNothing() {
|
|
1814
|
-
console.log('');
|
|
1815
|
-
// Intentionally empty
|
|
1816
|
-
}
|
|
1817
1812
|
drawAxis() {
|
|
1818
1813
|
if (!this.axisGroup) {
|
|
1819
1814
|
this.axisGroup = select(this.elRef.nativeElement)
|