mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -04:00
* Prettier all the JS files * Add GitHub Action to autoformat code pushed to master * Fix eslint violation due to formatting. * Remove GitHub actions for styling * Add restyled.io config
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;
|