@deephaven/chart 0.85.28-alpha.0 → 0.85.31
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/Chart.d.ts +2 -2
- package/dist/Chart.d.ts.map +1 -1
- package/dist/Chart.js +8 -8
- package/dist/Chart.js.map +1 -1
- package/dist/ChartModel.d.ts +5 -1
- package/dist/ChartModel.d.ts.map +1 -1
- package/dist/ChartModel.js.map +1 -1
- package/dist/ChartTheme.d.ts +3 -0
- package/dist/ChartTheme.d.ts.map +1 -1
- package/dist/ChartTheme.js +5 -1
- package/dist/ChartTheme.js.map +1 -1
- package/dist/ChartTheme.module.css +4 -0
- package/dist/ChartTheme.module.css.map +1 -1
- package/dist/ChartUtils.d.ts.map +1 -1
- package/dist/ChartUtils.js +24 -1
- package/dist/ChartUtils.js.map +1 -1
- package/dist/FigureChartModel.d.ts +4 -4
- package/dist/FigureChartModel.d.ts.map +1 -1
- package/dist/FigureChartModel.js.map +1 -1
- package/package.json +11 -11
package/dist/ChartUtils.js
CHANGED
|
@@ -1488,7 +1488,10 @@ class ChartUtils {
|
|
|
1488
1488
|
error_band_line_color,
|
|
1489
1489
|
ohlc_increasing,
|
|
1490
1490
|
ohlc_decreasing,
|
|
1491
|
-
title_color
|
|
1491
|
+
title_color,
|
|
1492
|
+
indicator_increasing,
|
|
1493
|
+
indicator_decreasing,
|
|
1494
|
+
indicator_gauge
|
|
1492
1495
|
} = theme;
|
|
1493
1496
|
return {
|
|
1494
1497
|
data: {
|
|
@@ -1528,6 +1531,26 @@ class ChartUtils {
|
|
|
1528
1531
|
outsidetextfont: {
|
|
1529
1532
|
color: title_color
|
|
1530
1533
|
}
|
|
1534
|
+
}],
|
|
1535
|
+
indicator: [{
|
|
1536
|
+
title: {
|
|
1537
|
+
font: {
|
|
1538
|
+
color: title_color
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
delta: {
|
|
1542
|
+
decreasing: {
|
|
1543
|
+
color: indicator_decreasing
|
|
1544
|
+
},
|
|
1545
|
+
increasing: {
|
|
1546
|
+
color: indicator_increasing
|
|
1547
|
+
}
|
|
1548
|
+
},
|
|
1549
|
+
gauge: {
|
|
1550
|
+
bar: {
|
|
1551
|
+
color: indicator_gauge
|
|
1552
|
+
}
|
|
1553
|
+
}
|
|
1531
1554
|
}]
|
|
1532
1555
|
},
|
|
1533
1556
|
/* eslint-enable camelcase */
|