Skip to content

Commit

Permalink
remove custom yAxis (price) formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
kenkunz committed Nov 10, 2023
1 parent 01e81f9 commit 8942a48
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/lib/chart/PairCandleChart.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,7 @@ Display trading pair candles (ohlc+v) charts, with attached quoteFeed for chart
const options = {
layout: { crosshair: true },
controls: { chartControls: null },
dontRoll: true,
chart: {
yAxis: {
priceFormatter: (...args: any[]) => formatDollar(args[2], 1, 3, false)
}
}
dontRoll: true
};
const init = (chartEngine: any) => {
Expand Down

0 comments on commit 8942a48

Please sign in to comment.