mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Adds support for histogram charts to data grid columns. - Adds a toggle button to the data grid's header to enabled/disable column charts. - When enabled, the charts get rendered as part of the data grid header. - Histogram charts will get rendered for fields based on date, number, string and boolean.
34 lines
910 B
TypeScript
34 lines
910 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License;
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
*/
|
|
|
|
export { createSavedSearchesLoader } from '../../../../src/plugins/discover/public';
|
|
export {
|
|
XJsonMode,
|
|
collapseLiteralStrings,
|
|
expandLiteralStrings,
|
|
UseRequestConfig,
|
|
useRequest,
|
|
} from '../../../../src/plugins/es_ui_shared/public';
|
|
|
|
export {
|
|
fetchChartsData,
|
|
getErrorMessage,
|
|
extractErrorMessage,
|
|
getDataGridSchemaFromKibanaFieldType,
|
|
getFieldsFromKibanaIndexPattern,
|
|
multiColumnSortFactory,
|
|
showDataGridColumnChartErrorMessageToast,
|
|
useDataGrid,
|
|
useRenderCellValue,
|
|
ChartData,
|
|
DataGrid,
|
|
EsSorting,
|
|
RenderCellValue,
|
|
SearchResponse7,
|
|
UseDataGridReturnType,
|
|
UseIndexDataReturnType,
|
|
INDEX_STATUS,
|
|
} from '../../ml/public';
|