@axdspub/axiom-charts 0.0.46 → 0.0.47
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/library/Libraries/axiom/index.js +4 -1
- package/library/Libraries/axiom/index.js.map +1 -1
- package/library/browser.js +3 -3
- package/library/browser.js.map +1 -1
- package/library/cjs.js +2 -1
- package/library/cjs.js.map +1 -1
- package/library/index.js +2 -1
- package/library/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1090,6 +1090,7 @@ styleInject(css_248z);
|
|
|
1090
1090
|
|
|
1091
1091
|
class AxiomChart extends ChartRoot {
|
|
1092
1092
|
updateD3AxisSettings(axis, axisSettings) {
|
|
1093
|
+
console.log(axisSettings);
|
|
1093
1094
|
if (axisSettings.ticks !== undefined) {
|
|
1094
1095
|
axis.ticks(axisSettings.ticks);
|
|
1095
1096
|
}
|
|
@@ -1137,8 +1138,10 @@ class AxiomChart extends ChartRoot {
|
|
|
1137
1138
|
const d3Axis = axisBottom(d3Scale);
|
|
1138
1139
|
this.updateD3AxisSettings(d3Axis, axisSettings);
|
|
1139
1140
|
const axisSpace = axis.scale.range[1] - axis.scale.range[0];
|
|
1141
|
+
console.log(axis.scale.range);
|
|
1140
1142
|
const minAxisSpace = Math.min(axisSpace / 2, axisSettings.tickSpace !== undefined ? axisSettings.tickSpace : 50);
|
|
1141
|
-
d3Axis.ticks(Math.floor(axisSpace / minAxisSpace));
|
|
1143
|
+
d3Axis.ticks((axisSettings.ticks != null) ? axisSettings.ticks : Math.floor(axisSpace / minAxisSpace));
|
|
1144
|
+
// d3Axis.tickFormat(timeFormat('%b'))
|
|
1142
1145
|
const offset = this.getXAxisOffset(axis);
|
|
1143
1146
|
const axisG = (g) => {
|
|
1144
1147
|
const o = g
|