@rfkit/charts 1.1.2 → 1.1.3
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/index.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -6354,6 +6354,7 @@ class Series extends engine_Engine {
|
|
|
6354
6354
|
...series[name],
|
|
6355
6355
|
...e
|
|
6356
6356
|
};
|
|
6357
|
+
if ('templateData' === e.name) console.log(series[name]);
|
|
6357
6358
|
this.draw();
|
|
6358
6359
|
}
|
|
6359
6360
|
}
|
|
@@ -9797,7 +9798,7 @@ class Spectrum {
|
|
|
9797
9798
|
for(let i = 0; i < s.length; i += 1){
|
|
9798
9799
|
const [name] = s[i];
|
|
9799
9800
|
const data = d[name];
|
|
9800
|
-
if (data &&
|
|
9801
|
+
if (data && SERIES_NAMES.includes(name)) {
|
|
9801
9802
|
chart.render({
|
|
9802
9803
|
name,
|
|
9803
9804
|
data
|