logitude-dashboard-library 3.1.36 → 3.1.37
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/index.js
CHANGED
|
@@ -1671,7 +1671,7 @@ function getDefaultChartInfo(widget) {
|
|
|
1671
1671
|
|
|
1672
1672
|
chart.thousandSeparator = _numberSeparatorSettings.thousandsSeparator;
|
|
1673
1673
|
chart.decimalSeparator = _numberSeparatorSettings.decimalSeparator;
|
|
1674
|
-
chart.palettecolors = "#
|
|
1674
|
+
chart.palettecolors = "#F6CF33,#EE5F77,#4AC76F,#32C7C7,#369CFB,#935BE0,#FAAD14,#EB67D0, #3C9957, #FF7D4B, #78A6FF, #35838F, #C1DA72, #BAA9F3, #F0AEAD, #246EAB";
|
|
1675
1675
|
chart.enableSlicing = "0";
|
|
1676
1676
|
chart.enableRotation = "0";
|
|
1677
1677
|
chart.chartTopMargin = "10";
|
|
@@ -1817,27 +1817,29 @@ var FusionChartHelper = /*#__PURE__*/function () {
|
|
|
1817
1817
|
}();
|
|
1818
1818
|
|
|
1819
1819
|
var plotColorsDictionary = {
|
|
1820
|
-
plotColor0: "#
|
|
1821
|
-
plotColor1: "#
|
|
1822
|
-
plotColor2: "#
|
|
1820
|
+
plotColor0: "#F6CF33",
|
|
1821
|
+
plotColor1: "#EE5F77",
|
|
1822
|
+
plotColor2: "#4AC76F",
|
|
1823
1823
|
plotColor3: "#32C7C7",
|
|
1824
|
-
plotColor4: "#
|
|
1825
|
-
plotColor5: "#
|
|
1826
|
-
plotColor6: "#
|
|
1827
|
-
plotColor7: "#
|
|
1828
|
-
plotColor8: "#
|
|
1829
|
-
plotColor9: "#
|
|
1830
|
-
plotColor10: "#
|
|
1831
|
-
plotColor11: "#
|
|
1832
|
-
plotColor12: "#
|
|
1833
|
-
plotColor13: "#
|
|
1824
|
+
plotColor4: "#369CFB",
|
|
1825
|
+
plotColor5: "#935BE0",
|
|
1826
|
+
plotColor6: "#FAAD14",
|
|
1827
|
+
plotColor7: "#EB67D0",
|
|
1828
|
+
plotColor8: "#3C9957",
|
|
1829
|
+
plotColor9: "#FF7D4B",
|
|
1830
|
+
plotColor10: "#78A6FF",
|
|
1831
|
+
plotColor11: "#35838F",
|
|
1832
|
+
plotColor12: "#C1DA72",
|
|
1833
|
+
plotColor13: "#BAA9F3",
|
|
1834
|
+
plotColor14: "#F0AEAD",
|
|
1835
|
+
plotColor15: "#246EAB"
|
|
1834
1836
|
};
|
|
1835
1837
|
|
|
1836
1838
|
var getPlotColorByIndexOrder = function getPlotColorByIndexOrder(index) {
|
|
1837
1839
|
var _index = index;
|
|
1838
1840
|
|
|
1839
|
-
if (_index >=
|
|
1840
|
-
_index = _index %
|
|
1841
|
+
if (_index >= 16) {
|
|
1842
|
+
_index = _index % 16;
|
|
1841
1843
|
}
|
|
1842
1844
|
|
|
1843
1845
|
switch (_index) {
|
|
@@ -1883,6 +1885,12 @@ var getPlotColorByIndexOrder = function getPlotColorByIndexOrder(index) {
|
|
|
1883
1885
|
case 13:
|
|
1884
1886
|
return plotColorsDictionary.plotColor13;
|
|
1885
1887
|
|
|
1888
|
+
case 14:
|
|
1889
|
+
return plotColorsDictionary.plotColor14;
|
|
1890
|
+
|
|
1891
|
+
case 15:
|
|
1892
|
+
return plotColorsDictionary.plotColor15;
|
|
1893
|
+
|
|
1886
1894
|
default:
|
|
1887
1895
|
return "#0566c2";
|
|
1888
1896
|
}
|