mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Co-authored-by: Nick Partridge <nick.ryan.partridge@gmail.com>
This commit is contained in:
parent
b31dca840b
commit
670fe1a8f6
6 changed files with 27 additions and 27 deletions
|
@ -18,7 +18,6 @@ import {
|
|||
setDataActions,
|
||||
setFormatService,
|
||||
setThemeService,
|
||||
setTimefilter,
|
||||
setUISettings,
|
||||
setDocLinks,
|
||||
setPalettesService,
|
||||
|
@ -80,7 +79,6 @@ export class VisTypeXyPlugin
|
|||
public start(core: CoreStart, { data }: VisTypeXyPluginStartDependencies) {
|
||||
setFormatService(data.fieldFormats);
|
||||
setDataActions(data.actions);
|
||||
setTimefilter(data.query.timefilter.timefilter);
|
||||
setDocLinks(core.docLinks);
|
||||
|
||||
return {};
|
||||
|
|
|
@ -24,10 +24,6 @@ export const [getFormatService, setFormatService] = createGetterSetter<
|
|||
DataPublicPluginStart['fieldFormats']
|
||||
>('xy data.fieldFormats');
|
||||
|
||||
export const [getTimefilter, setTimefilter] = createGetterSetter<
|
||||
DataPublicPluginStart['query']['timefilter']['timefilter']
|
||||
>('xy data.query.timefilter.timefilter');
|
||||
|
||||
export const [getThemeService, setThemeService] = createGetterSetter<ChartsPluginSetup['theme']>(
|
||||
'xy charts.theme'
|
||||
);
|
||||
|
|
|
@ -16,6 +16,7 @@ import { DateHistogramParams, Dimensions, HistogramParams, VisParams } from './t
|
|||
import { visName, VisTypeXyExpressionFunctionDefinition } from './xy_vis_fn';
|
||||
import { XyVisType } from '../common';
|
||||
import { getEsaggsFn } from './to_ast_esaggs';
|
||||
import { TimeRangeBounds } from '../../data/common';
|
||||
|
||||
export const toExpressionAst: VisToExpressionAst<VisParams> = async (vis, params) => {
|
||||
const schemas = getVisSchemas(vis, params);
|
||||
|
@ -42,6 +43,14 @@ export const toExpressionAst: VisToExpressionAst<VisParams> = async (vis, params
|
|||
.duration(esValue, esUnit)
|
||||
.asMilliseconds();
|
||||
(dimensions.x.params as DateHistogramParams).format = xAgg.buckets.getScaledDateFormat();
|
||||
const bounds = xAgg.buckets.getBounds() as TimeRangeBounds | undefined;
|
||||
|
||||
if (bounds && bounds?.min && bounds?.max) {
|
||||
(dimensions.x.params as DateHistogramParams).bounds = {
|
||||
min: bounds.min.valueOf(),
|
||||
max: bounds.max.valueOf(),
|
||||
};
|
||||
}
|
||||
} else if (xAgg.type.name === BUCKET_TYPES.HISTOGRAM) {
|
||||
const intervalParam = xAgg.type.paramByName('interval');
|
||||
const output = { params: {} as any };
|
||||
|
|
|
@ -14,22 +14,20 @@ import { DomainRange } from '@elastic/charts';
|
|||
import { getAdjustedInterval } from '../../../charts/public';
|
||||
import { Datatable } from '../../../expressions/public';
|
||||
|
||||
import { getTimefilter } from '../services';
|
||||
import { Aspect, DateHistogramParams, HistogramParams } from '../types';
|
||||
|
||||
export const getXDomain = (params: Aspect['params']): DomainRange => {
|
||||
const minInterval = (params as DateHistogramParams | HistogramParams)?.interval ?? undefined;
|
||||
const bounds = (params as DateHistogramParams).date
|
||||
? (params as DateHistogramParams).bounds
|
||||
: null;
|
||||
|
||||
if ((params as DateHistogramParams).date) {
|
||||
const bounds = getTimefilter().getActiveBounds();
|
||||
|
||||
if (bounds) {
|
||||
return {
|
||||
min: bounds.min ? bounds.min.valueOf() : undefined,
|
||||
max: bounds.max ? bounds.max.valueOf() : undefined,
|
||||
minInterval,
|
||||
};
|
||||
}
|
||||
if (bounds) {
|
||||
return {
|
||||
min: bounds.min as number,
|
||||
max: bounds.max as number,
|
||||
minInterval,
|
||||
};
|
||||
}
|
||||
|
||||
return {
|
||||
|
|
|
@ -96,14 +96,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
it('should show correct chart', async function () {
|
||||
const xAxisLabels = await PageObjects.visChart.getExpectedValue(
|
||||
['2015-09-20 00:00', '2015-09-21 00:00', '2015-09-22 00:00', '2015-09-23 00:00'],
|
||||
[
|
||||
'2015-09-20 00:00',
|
||||
'2015-09-20 12:00',
|
||||
'2015-09-21 00:00',
|
||||
'2015-09-21 12:00',
|
||||
'2015-09-22 00:00',
|
||||
'2015-09-22 12:00',
|
||||
]
|
||||
['2015-09-19 12:00', '2015-09-20 12:00', '2015-09-21 12:00', '2015-09-22 12:00']
|
||||
);
|
||||
const yAxisLabels = await PageObjects.visChart.getExpectedValue(
|
||||
['0', '200', '400', '600', '800', '1,000', '1,200', '1,400', '1,600'],
|
||||
|
|
|
@ -269,7 +269,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
it('should show round labels in default timezone', async function () {
|
||||
const expectedLabels = await PageObjects.visChart.getExpectedValue(
|
||||
['2015-09-20 00:00', '2015-09-21 00:00', '2015-09-22 00:00'],
|
||||
['2015-09-20 00:00', '2015-09-20 18:00', '2015-09-21 12:00', '2015-09-22 06:00']
|
||||
['2015-09-19 12:00', '2015-09-20 12:00', '2015-09-21 12:00', '2015-09-22 12:00']
|
||||
);
|
||||
await initChart();
|
||||
const labels = await PageObjects.visChart.getXAxisLabels();
|
||||
|
@ -279,7 +279,13 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
it('should show round labels in different timezone', async function () {
|
||||
const expectedLabels = await PageObjects.visChart.getExpectedValue(
|
||||
['2015-09-20 00:00', '2015-09-21 00:00', '2015-09-22 00:00'],
|
||||
['2015-09-19 18:00', '2015-09-20 12:00', '2015-09-21 06:00', '2015-09-22 00:00']
|
||||
[
|
||||
'2015-09-19 12:00',
|
||||
'2015-09-20 06:00',
|
||||
'2015-09-21 00:00',
|
||||
'2015-09-21 18:00',
|
||||
'2015-09-22 12:00',
|
||||
]
|
||||
);
|
||||
|
||||
await kibanaServer.uiSettings.update({ 'dateFormat:tz': 'America/Phoenix' });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue