mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 16:42:26 +08:00
Histogram: move histogram from alpha to beta panel (#34246)
* add legend * tooltip off-by-one * units in x axis * update function call * remove tooltip
This commit is contained in:
@ -93,7 +93,7 @@ export class UPlotAxisBuilder extends PlotConfigBuilder<AxisProps, Axis> {
|
||||
} else if (isTime) {
|
||||
config.values = formatTime;
|
||||
} else if (formatValue) {
|
||||
config.values = (u: uPlot, vals: any[]) => vals.map((v) => formatValue!(v));
|
||||
config.values = (u: uPlot, vals: any[]) => vals.map(formatValue!);
|
||||
}
|
||||
|
||||
// store timezone
|
||||
|
Reference in New Issue
Block a user