mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Lens] Updates the Data histogram in-product assistance (#138451)
* [Lens] Updates the Data histogram in-product assistance * Review comment Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Joe Reuter <johannes.reuter@elastic.co>
This commit is contained in:
parent
2ad22112a7
commit
38a23e2e07
1 changed files with 3 additions and 3 deletions
|
@ -457,7 +457,7 @@ export const dateHistogramOperation: OperationDefinition<
|
|||
);
|
||||
},
|
||||
helpComponentTitle: i18n.translate('xpack.lens.indexPattern.dateHistogram.titleHelp', {
|
||||
defaultMessage: 'How auto date histogram works',
|
||||
defaultMessage: 'How Date histogram works',
|
||||
}),
|
||||
helpComponent() {
|
||||
const infiniteBound = i18n.translate('xpack.lens.indexPattern.dateHistogram.moreThanYear', {
|
||||
|
@ -471,14 +471,14 @@ export const dateHistogramOperation: OperationDefinition<
|
|||
<>
|
||||
<p>
|
||||
{i18n.translate('xpack.lens.indexPattern.dateHistogram.autoBasicExplanation', {
|
||||
defaultMessage: 'The auto date histogram splits a data field into buckets by interval.',
|
||||
defaultMessage: 'Date histogram splits data into time intervals.',
|
||||
})}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<FormattedMessage
|
||||
id="xpack.lens.indexPattern.dateHistogram.autoLongerExplanation"
|
||||
defaultMessage="To choose the interval, Lens divides the specified time range by the {targetBarSetting} setting. Lens calculates the best interval for your data. For example 30m, 1h, and 12. The maximum number of bars is set by the {maxBarSetting} value."
|
||||
defaultMessage="To choose the interval, Lens divides the specified time range by the {targetBarSetting} Advanced Setting and calculates the best interval for your data. For example, when the time range is 4 days, the data is divided into hourly buckets. To configure the maximum number of bars, use the {maxBarSetting} Advanced Setting."
|
||||
values={{
|
||||
maxBarSetting: <EuiCode>{UI_SETTINGS.HISTOGRAM_MAX_BARS}</EuiCode>,
|
||||
targetBarSetting: <EuiCode>{UI_SETTINGS.HISTOGRAM_BAR_TARGET}</EuiCode>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue