2022-04-22 08:33:13 -05:00
|
|
|
import React from 'react';
|
|
|
|
|
2021-10-26 08:51:59 -05:00
|
|
|
import { SelectableValue } from '@grafana/data';
|
2022-11-16 04:16:27 -06:00
|
|
|
import { RadioButtonGroup, HorizontalGroup } from '@grafana/ui';
|
|
|
|
import { EXPLORE_GRAPH_STYLES, ExploreGraphStyle } from 'app/types';
|
2021-10-26 08:51:59 -05:00
|
|
|
|
|
|
|
const ALL_GRAPH_STYLE_OPTIONS: Array<SelectableValue<ExploreGraphStyle>> = EXPLORE_GRAPH_STYLES.map((style) => ({
|
|
|
|
value: style,
|
|
|
|
// capital-case it and switch `_` to ` `
|
|
|
|
label: style[0].toUpperCase() + style.slice(1).replace(/_/, ' '),
|
|
|
|
}));
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
graphStyle: ExploreGraphStyle;
|
|
|
|
onChangeGraphStyle: (style: ExploreGraphStyle) => void;
|
|
|
|
};
|
|
|
|
|
|
|
|
export function ExploreGraphLabel(props: Props) {
|
|
|
|
const { graphStyle, onChangeGraphStyle } = props;
|
|
|
|
return (
|
2022-11-16 04:16:27 -06:00
|
|
|
<HorizontalGroup justify="space-between" wrap>
|
2021-10-26 08:51:59 -05:00
|
|
|
Graph
|
|
|
|
<RadioButtonGroup size="sm" options={ALL_GRAPH_STYLE_OPTIONS} value={graphStyle} onChange={onChangeGraphStyle} />
|
2022-11-16 04:16:27 -06:00
|
|
|
</HorizontalGroup>
|
2021-10-26 08:51:59 -05:00
|
|
|
);
|
|
|
|
}
|