mirror of
https://github.com/skooner-k8s/skooner.git
synced 2026-08-24 04:16:18 +00:00
fix crosshair title
This commit is contained in:
@@ -92,9 +92,11 @@ export default class PrometheusGraph extends Base<Props, State> {
|
||||
/>
|
||||
<Crosshair
|
||||
values={this.state.crosshairValues}
|
||||
titleFormat={
|
||||
d => ({title: 'Time', value: new Date(d[0].x * 1000).toLocaleTimeString()})
|
||||
}
|
||||
itemsFormat={
|
||||
d => [
|
||||
{title: 'Time', value: new Date(d[0].x * 1000).toLocaleTimeString()},
|
||||
{title: 'Percent', value: `${(d[0].y * 100).toFixed(2)}%`},
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user