flexmonster 2.9.18 → 2.9.21
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/flexmonster.css +99 -1
- package/flexmonster.es5.full.js +2770 -2758
- package/flexmonster.es5.js +2651 -2639
- package/flexmonster.full.js +2578 -2553
- package/flexmonster.js +2460 -2435
- package/flexmonster.min.css +1 -1
- package/lib/flexmonster.highcharts.js +6 -0
- package/localizations/de.json +604 -604
- package/localizations/en.json +604 -604
- package/localizations/es.json +604 -604
- package/localizations/fr.json +604 -604
- package/localizations/hu.json +604 -604
- package/localizations/id.json +604 -604
- package/localizations/it.json +604 -604
- package/localizations/nl.json +604 -604
- package/localizations/pt.json +604 -604
- package/localizations/th.json +604 -604
- package/localizations/tr.json +604 -604
- package/localizations/uk.json +604 -604
- package/localizations/zh.json +603 -603
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +99 -1
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +99 -1
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +99 -1
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +99 -1
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +116 -1
- package/theme/green/flexmonster.css +99 -1
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +99 -1
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +99 -1
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +99 -1
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +99 -1
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +99 -1
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +99 -1
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +99 -1
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +99 -1
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +99 -1
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +99 -1
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +99 -1
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +1 -1
- package/types/flexmonster.d.ts +8 -3
|
@@ -246,6 +246,7 @@
|
|
|
246
246
|
for (var j = 0; j < data.meta.vAmount; j++) {
|
|
247
247
|
_yName = data.meta["v" + j + "Name"];
|
|
248
248
|
_seriesName = _seriesBasedOnC ? record["c0"] : _yName;
|
|
249
|
+
// Add "_" at the start to ensure order remains unchanged
|
|
249
250
|
if (series["_" + _yName] == undefined) {
|
|
250
251
|
series["_" + _yName] = {};
|
|
251
252
|
}
|
|
@@ -262,6 +263,8 @@
|
|
|
262
263
|
var yn = 0;
|
|
263
264
|
for (var yAxis in series) {
|
|
264
265
|
var _series = series[yAxis];
|
|
266
|
+
// Remove the "_" helper symbol
|
|
267
|
+
yAxis = yAxis.replace("_", "");
|
|
265
268
|
for (var seriesname in _series) {
|
|
266
269
|
var s = {
|
|
267
270
|
name: (data.meta["rAmount"] > 0 && data.meta["cAmount"] > 0 && data.meta["vAmount"] > 1) ?
|
|
@@ -303,6 +306,7 @@
|
|
|
303
306
|
for (var j = 0; j < data.meta.vAmount; j++) {
|
|
304
307
|
_yName = data.meta["v" + j + "Name"];
|
|
305
308
|
_seriesName = _seriesBasedOnC ? record["c0"] : _yName;
|
|
309
|
+
// Add "_" at the start to ensure order remains unchanged
|
|
306
310
|
if (series["_" + _yName] == undefined) {
|
|
307
311
|
series["_" + _yName] = {};
|
|
308
312
|
}
|
|
@@ -319,6 +323,8 @@
|
|
|
319
323
|
var yn = 0;
|
|
320
324
|
for (var yAxis in series) {
|
|
321
325
|
var _series = series[yAxis];
|
|
326
|
+
// Remove the "_" helper symbol
|
|
327
|
+
yAxis = yAxis.replace("_", "");
|
|
322
328
|
for (var seriesname in _series) {
|
|
323
329
|
var s = {
|
|
324
330
|
name: (data.meta["rAmount"] > 0 && data.meta["cAmount"] > 0 && data.meta["vAmount"] > 1) ?
|