@deephaven/chart 0.104.1-beta.11 → 0.104.1-beta.5
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.map +1 -1
- package/dist/Chart.js +8 -23
- package/dist/Chart.js.map +1 -1
- package/dist/ChartModel.d.ts +0 -2
- package/dist/ChartModel.d.ts.map +1 -1
- package/dist/ChartModel.js +0 -6
- package/dist/ChartModel.js.map +1 -1
- package/dist/ChartTheme.d.ts +0 -3
- package/dist/ChartTheme.d.ts.map +1 -1
- package/dist/ChartTheme.js +1 -5
- package/dist/ChartTheme.js.map +1 -1
- package/dist/ChartTheme.module.css +0 -4
- package/dist/ChartTheme.module.css.map +1 -1
- package/dist/ChartUtils.d.ts.map +1 -1
- package/dist/ChartUtils.js +1 -24
- package/dist/ChartUtils.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/virtual-webgl.d.ts +2 -0
- package/dist/virtual-webgl.d.ts.map +1 -0
- package/dist/virtual-webgl.js +915 -0
- package/dist/virtual-webgl.js.map +1 -0
- package/package.json +11 -11
package/dist/ChartUtils.js
CHANGED
|
@@ -1468,10 +1468,7 @@ class ChartUtils {
|
|
|
1468
1468
|
error_band_line_color,
|
|
1469
1469
|
ohlc_increasing,
|
|
1470
1470
|
ohlc_decreasing,
|
|
1471
|
-
title_color
|
|
1472
|
-
indicator_increasing,
|
|
1473
|
-
indicator_decreasing,
|
|
1474
|
-
indicator_gauge
|
|
1471
|
+
title_color
|
|
1475
1472
|
} = theme;
|
|
1476
1473
|
return {
|
|
1477
1474
|
data: {
|
|
@@ -1511,26 +1508,6 @@ class ChartUtils {
|
|
|
1511
1508
|
outsidetextfont: {
|
|
1512
1509
|
color: title_color
|
|
1513
1510
|
}
|
|
1514
|
-
}],
|
|
1515
|
-
indicator: [{
|
|
1516
|
-
title: {
|
|
1517
|
-
font: {
|
|
1518
|
-
color: title_color
|
|
1519
|
-
}
|
|
1520
|
-
},
|
|
1521
|
-
delta: {
|
|
1522
|
-
decreasing: {
|
|
1523
|
-
color: indicator_decreasing
|
|
1524
|
-
},
|
|
1525
|
-
increasing: {
|
|
1526
|
-
color: indicator_increasing
|
|
1527
|
-
}
|
|
1528
|
-
},
|
|
1529
|
-
gauge: {
|
|
1530
|
-
bar: {
|
|
1531
|
-
color: indicator_gauge
|
|
1532
|
-
}
|
|
1533
|
-
}
|
|
1534
1511
|
}]
|
|
1535
1512
|
},
|
|
1536
1513
|
/* eslint-enable camelcase */
|