Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update VictoryCandlestickLabelsType to allow for string
  • Loading branch information
Burnett2k committed Feb 8, 2024
commit f637ff56760a0f0cb323e077096c42d033037ed4
2 changes: 1 addition & 1 deletion packages/victory-candlestick/src/victory-candlestick.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export interface VictoryCandlestickStyleInterface {
export type VictoryCandlestickLabelsType =
| (string | number)[]
| boolean
| ((datum: any) => number);
| ((datum: any) => number | string);

export interface VictoryCandlestickProps
extends Omit<VictoryCommonProps, "polar">,
Expand Down