mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Table: Set & use field display processor * Use applyFieldOverrides outside in story instead * Change types a bit * Table: Move to flexible layout * Simplest possible custom field option * Skip default column * Added textAlign * Explore: Set display processor for table data frame * Fixed storybook * Refactoring * Progress on cell display mode * Major progress * Progress & refactoring * Fixes * Updated tests * Added more tests * Table: Progress on cell style customization * Restored testdata random walk table scenario * put back unrelated change * remove unused things * Updated table story * Renamed property Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
11 lines
324 B
TypeScript
11 lines
324 B
TypeScript
import { PanelPlugin } from '@grafana/data';
|
|
|
|
import { TablePanelEditor } from './TablePanelEditor';
|
|
import { TablePanel } from './TablePanel';
|
|
import { Options, defaults } from './types';
|
|
|
|
export const plugin = new PanelPlugin<Options>(TablePanel)
|
|
.setNoPadding()
|
|
.setDefaults(defaults)
|
|
.setEditor(TablePanelEditor);
|