fix crosshair title

This commit is contained in:
Yuqiu Wang
2021-04-05 12:28:48 -04:00
parent 49e15adc6e
commit 1d14036e3f
+3 -1
View File
@@ -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)}%`},
]
}