Files
redash/client/app/visualizations/box-plot/index.js
Arik Fraimovich 56d3be2248 Prettier all the Javascript code & GitHub Action (#4433)
* 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
2019-12-11 17:05:38 +02:00

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;