@d3plus/core 3.0.2 → 3.0.4
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/README.md +41 -41
- package/es/src/charts/Plot.js +4 -1
- package/package.json +8 -8
- package/umd/d3plus-core.full.js +2309 -1785
- package/umd/d3plus-core.full.js.map +1 -1
- package/umd/d3plus-core.full.min.js +1075 -963
- package/umd/d3plus-core.js +5 -2
- package/umd/d3plus-core.js.map +1 -1
- package/umd/d3plus-core.min.js +2 -2
package/umd/d3plus-core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
@d3plus/core v3.0.
|
|
2
|
+
@d3plus/core v3.0.4
|
|
3
3
|
Data visualization made easy. A javascript library that extends the popular D3.js to enable fast and beautiful visualizations.
|
|
4
4
|
Copyright (c) 2025 D3plus - https://d3plus.org
|
|
5
5
|
@license MIT
|
|
@@ -10816,8 +10816,8 @@
|
|
|
10816
10816
|
brushMin: ()=>this._xTime || this._yTime || this._x2Time || this._y2Time ? 2 : 1
|
|
10817
10817
|
});
|
|
10818
10818
|
this._x = accessor("x");
|
|
10819
|
-
this._xAxis = new AxisBottom().align("end");
|
|
10820
10819
|
this._xKey = "x";
|
|
10820
|
+
this._xAxis = new AxisBottom().align("end");
|
|
10821
10821
|
this._xTest = new AxisBottom().align("end").gridSize(0);
|
|
10822
10822
|
this._xConfig = {
|
|
10823
10823
|
gridConfig: {
|
|
@@ -10831,12 +10831,14 @@
|
|
|
10831
10831
|
};
|
|
10832
10832
|
this._xCutoff = 150;
|
|
10833
10833
|
this._x2 = accessor("x2");
|
|
10834
|
+
this._x2Key = "x2";
|
|
10834
10835
|
this._x2Axis = new AxisTop().align("start");
|
|
10835
10836
|
this._x2Test = new AxisTop().align("start").gridSize(0);
|
|
10836
10837
|
this._x2Config = {
|
|
10837
10838
|
padding: 0
|
|
10838
10839
|
};
|
|
10839
10840
|
this._y = accessor("y");
|
|
10841
|
+
this._yKey = "y";
|
|
10840
10842
|
this._yAxis = new AxisLeft().align("start");
|
|
10841
10843
|
this._yKey = "y";
|
|
10842
10844
|
this._yTest = new AxisLeft().align("start").gridSize(0);
|
|
@@ -10852,6 +10854,7 @@
|
|
|
10852
10854
|
};
|
|
10853
10855
|
this._yCutoff = 150;
|
|
10854
10856
|
this._y2 = accessor("y2");
|
|
10857
|
+
this._y2Key = "y2";
|
|
10855
10858
|
this._y2Axis = new AxisRight().align("end");
|
|
10856
10859
|
this._y2Test = new AxisLeft().align("end").gridSize(0);
|
|
10857
10860
|
this._y2Config = {};
|