Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jnumainville committed Jan 17, 2025
1 parent b524319 commit 2c6890a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions packages/chart/src/ChartUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import type {
AxisType as PlotlyAxisType,
MarkerSymbol,
Template,
Delta,
} from 'plotly.js';
import { assertNotNull, bindAllMethods, type Range } from '@deephaven/utils';
import { type ChartTheme } from './ChartTheme';
Expand Down Expand Up @@ -2082,8 +2083,12 @@ class ChartUtils {
{
title: { font: { color: title_color } },
delta: {
decreasing: { color: indicator_decreasing, symbol: '▼' },
increasing: { color: indicator_increasing, symbol: '▲' },
decreasing: {
color: indicator_decreasing,
} as Delta['increasing'],
increasing: {
color: indicator_increasing,
} as Delta['decreasing'],
},
gauge: { bar: { color: indicator_gauge } },
},
Expand Down

0 comments on commit 2c6890a

Please sign in to comment.