@reside-ic/skadi-chart 1.1.3 → 1.1.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 +2 -2
- package/dist/skadi-chart.d.ts +1 -1
- package/dist/skadi-chart.js +662 -662
- package/dist/skadi-chart.umd.cjs +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -98,7 +98,7 @@ class CustomLayer extends OptionalLayer {
|
|
|
98
98
|
const svg = layerArgs.coreLayers[LayerType.Svg];
|
|
99
99
|
const { getHtmlId } = layerArgs;
|
|
100
100
|
svg.append("svg:circle")
|
|
101
|
-
.attr("id",
|
|
101
|
+
.attr("id", `circle-${getHtmlId(this.type)}`)
|
|
102
102
|
.attr("cx", "50%")
|
|
103
103
|
.attr("cy", "50%")
|
|
104
104
|
.attr("r", "5%")
|
|
@@ -230,7 +230,7 @@ class CustomLayer extends OptionalLayer {
|
|
|
230
230
|
const svg = layerArgs.coreLayers[LayerType.Svg];
|
|
231
231
|
const { getHtmlId } = layerArgs;
|
|
232
232
|
svg.append("svg:circle")
|
|
233
|
-
.attr("id",
|
|
233
|
+
.attr("id", `circle-${getHtmlId(this.type)}`)
|
|
234
234
|
.attr("cx", "50%")
|
|
235
235
|
.attr("cy", "50%")
|
|
236
236
|
.attr("r", "5%")
|
package/dist/skadi-chart.d.ts
CHANGED