feat: show y Axis and corresponding grid lines for Metrics tab in Services/API Endpoints/Backend by jaywalker21 · Pull Request #1381 · hypertrace/hypertrace-ui · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,12 @@ export const backendMetricsDashboard: DashboardDefaultConfiguration = {
'color-palette': RED_COLOR_PALETTE,
'selectable-interval': true,
'legend-position': LegendPosition.TopLeft,
'show-y-axis': true,
'y-axis': {
type: 'cartesian-axis',
'show-grid-lines': true,
'min-upper-limit': 25
},
series: [
{
type: 'series',
Expand Down Expand Up @@ -351,6 +357,12 @@ export const backendMetricsDashboard: DashboardDefaultConfiguration = {
type: 'cartesian-widget',
'selectable-interval': true,
'legend-position': LegendPosition.None,
'show-y-axis': true,
'y-axis': {
type: 'cartesian-axis',
'show-grid-lines': true,
'min-upper-limit': 25
},
series: [
{
type: 'series',
Expand Down