Skip to content

Commit

Permalink
Use full time interval for x-axis domain
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerry350 committed Oct 21, 2019
1 parent e60a5b0 commit 30bed67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export const AnomaliesChart: React.FunctionComponent<{
onBrushEnd={handleBrushEnd}
tooltip={tooltipProps}
baseTheme={isDarkMode ? DARK_THEME : LIGHT_THEME}
xDomain={{ min: timeRange.startTime, max: timeRange.endTime }}
/>
</Chart>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ export const LogEntryRateBarChart: React.FunctionComponent<{
theme={isDarkMode ? DARK_THEME : LIGHT_THEME}
showLegend
legendPosition="right"
xDomain={{ min: timeRange.startTime, max: timeRange.endTime }}
/>
</Chart>
</div>
Expand Down

0 comments on commit 30bed67

Please sign in to comment.