mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -04:00
21 lines
399 B
JavaScript
21 lines
399 B
JavaScript
import { registerVisualization } from '@/visualizations';
|
|
|
|
import Renderer from './Renderer';
|
|
import Editor from './Editor';
|
|
|
|
export default function init() {
|
|
registerVisualization({
|
|
type: 'BOXPLOT',
|
|
name: 'Boxplot (Deprecated)',
|
|
isDeprecated: true,
|
|
getOptions: options => ({ ...options }),
|
|
Renderer,
|
|
Editor,
|
|
|
|
defaultRows: 8,
|
|
minRows: 5,
|
|
});
|
|
}
|
|
|
|
init.init = true;
|