semiotic 2.0.0 → 2.0.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/dist/semiotic.js +13 -10
- package/dist/semiotic.module.js +13 -10
- package/package.json +1 -1
package/dist/semiotic.js
CHANGED
|
@@ -4160,16 +4160,19 @@ function bucketizedRenderingFn({ data, type, renderMode, eventListenersGenerator
|
|
|
4160
4160
|
translate = [0, 0];
|
|
4161
4161
|
}
|
|
4162
4162
|
if (type.axis && type.type === "histogram") {
|
|
4163
|
-
renderedSummaryMarks.push(
|
|
4164
|
-
|
|
4165
|
-
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4163
|
+
renderedSummaryMarks.push({
|
|
4164
|
+
type: "svg-only-mark",
|
|
4165
|
+
Mark: createSummaryAxis({
|
|
4166
|
+
summary,
|
|
4167
|
+
summaryI,
|
|
4168
|
+
axisSettings: type.axis,
|
|
4169
|
+
axisCreator,
|
|
4170
|
+
projection,
|
|
4171
|
+
actualMax,
|
|
4172
|
+
adjustedSize,
|
|
4173
|
+
columnWidth
|
|
4174
|
+
})
|
|
4175
|
+
});
|
|
4173
4176
|
}
|
|
4174
4177
|
mappedBars.points.forEach((d) => {
|
|
4175
4178
|
d.x += translate[0];
|
package/dist/semiotic.module.js
CHANGED
|
@@ -4129,16 +4129,19 @@ function bucketizedRenderingFn({ data, type, renderMode, eventListenersGenerator
|
|
|
4129
4129
|
translate = [0, 0];
|
|
4130
4130
|
}
|
|
4131
4131
|
if (type.axis && type.type === "histogram") {
|
|
4132
|
-
renderedSummaryMarks.push(
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4132
|
+
renderedSummaryMarks.push({
|
|
4133
|
+
type: "svg-only-mark",
|
|
4134
|
+
Mark: createSummaryAxis({
|
|
4135
|
+
summary,
|
|
4136
|
+
summaryI,
|
|
4137
|
+
axisSettings: type.axis,
|
|
4138
|
+
axisCreator,
|
|
4139
|
+
projection,
|
|
4140
|
+
actualMax,
|
|
4141
|
+
adjustedSize,
|
|
4142
|
+
columnWidth
|
|
4143
|
+
})
|
|
4144
|
+
});
|
|
4142
4145
|
}
|
|
4143
4146
|
mappedBars.points.forEach((d) => {
|
|
4144
4147
|
d.x += translate[0];
|