Skip to content

Commit

Permalink
Issue #552: Fix y-axis percentage formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
aalpern committed Apr 22, 2019
1 parent 3f5984d commit 011ebb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tessera-frontend/src/ts/charts/flot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export interface FlotRenderContext {

const FORMAT_STRING_STANDARD = ',.3s'
const FORMAT_STANDARD = d3.format(FORMAT_STRING_STANDARD)
const FORMAT_PERCENT = d3.format('%')
const FORMAT_PERCENT = d3.format('.0%')
const THREE_HOURS_MS = 1000 * 60 * 60 * 3
const ONE_HOUR_MS = 1000 * 60 * 60 * 1
const DEFAULT_LINE_WIDTH = 1.0
Expand Down

0 comments on commit 011ebb3

Please sign in to comment.