@mathstack/viz 1.0.0 → 1.1.0
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 +5 -0
- package/fesm2022/mathstack-viz.mjs.map +1 -1
- package/lib/axes/base/xy-axis-base.d.ts +1 -0
- package/lib/axes/ordinal/ordinal-axis.d.ts +1 -0
- package/lib/axes/quantitative/quantitative-axis.d.ts +1 -0
- package/lib/axes/x/x-axis.d.ts +1 -0
- package/lib/axes/x-ordinal/x-ordinal-axis.component.d.ts +2 -0
- package/lib/axes/x-quantitative/x-quantitative-axis.component.d.ts +1 -0
- package/lib/axes/y/y-axis.d.ts +1 -0
- package/lib/axes/y-ordinal/y-ordinal-axis.component.d.ts +2 -0
- package/lib/axes/y-quantitative-axis/y-quantitative-axis.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1807,8 +1807,13 @@ class XyAxis extends XyAuxMarks {
|
|
|
1807
1807
|
this.setScale();
|
|
1808
1808
|
this.setAxisFromScaleAndConfig();
|
|
1809
1809
|
this.drawAxis();
|
|
1810
|
+
this.doNothing();
|
|
1810
1811
|
this.isFirstDraw = false;
|
|
1811
1812
|
}
|
|
1813
|
+
doNothing() {
|
|
1814
|
+
console.log('');
|
|
1815
|
+
// Intentionally empty
|
|
1816
|
+
}
|
|
1812
1817
|
drawAxis() {
|
|
1813
1818
|
if (!this.axisGroup) {
|
|
1814
1819
|
this.axisGroup = select(this.elRef.nativeElement)
|