katucharts.js 0.2.3 → 0.2.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/dist/katucharts-bio.es.js +8 -2
- package/dist/katucharts-bio.umd.js +1 -1
- package/dist/katucharts.es.js +599 -593
- package/dist/katucharts.umd.js +4 -4
- package/package.json +1 -1
|
@@ -5658,7 +5658,10 @@ class dh extends nt {
|
|
|
5658
5658
|
}).attr("stroke-width", (p) => {
|
|
5659
5659
|
var g, y;
|
|
5660
5660
|
return ((g = p.marker) == null ? void 0 : g.lineWidth) ?? ((y = this.config.marker) == null ? void 0 : y.lineWidth) ?? 1;
|
|
5661
|
-
}).attr("opacity", this.config.opacity ?? 1).merge(u).
|
|
5661
|
+
}).attr("opacity", this.config.opacity ?? 1).merge(u).attr("fill", (p) => this.getPointFill(p, i)).attr("stroke", (p) => {
|
|
5662
|
+
var g, y;
|
|
5663
|
+
return ((g = p.marker) == null ? void 0 : g.lineColor) ?? ((y = this.config.marker) == null ? void 0 : y.lineColor) ?? i;
|
|
5664
|
+
}).transition().duration(t).attr("cx", (p, g) => this.cachedPositions[g].cx).attr("cy", (p, g) => this.cachedPositions[g].cy).attr("r", (p) => {
|
|
5662
5665
|
var g;
|
|
5663
5666
|
return ((g = p.marker) == null ? void 0 : g.radius) ?? s;
|
|
5664
5667
|
});
|
|
@@ -5670,7 +5673,10 @@ class dh extends nt {
|
|
|
5670
5673
|
}).attr("stroke-width", (g) => {
|
|
5671
5674
|
var y, m;
|
|
5672
5675
|
return ((y = g.marker) == null ? void 0 : y.lineWidth) ?? ((m = this.config.marker) == null ? void 0 : m.lineWidth) ?? 1;
|
|
5673
|
-
}).attr("opacity", this.config.opacity ?? 1).merge(d).
|
|
5676
|
+
}).attr("opacity", this.config.opacity ?? 1).merge(d).attr("fill", (g) => this.getPointFill(g, i)).attr("stroke", (g) => {
|
|
5677
|
+
var y, m;
|
|
5678
|
+
return ((y = g.marker) == null ? void 0 : y.lineColor) ?? ((m = this.config.marker) == null ? void 0 : m.lineColor) ?? i;
|
|
5679
|
+
}).transition().duration(t).attr(
|
|
5674
5680
|
"transform",
|
|
5675
5681
|
(g, y) => `translate(${this.cachedPositions[y].cx},${this.cachedPositions[y].cy})`
|
|
5676
5682
|
).attr("d", (g) => {
|