@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.
@@ -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 */