@deephaven/dashboard-core-plugins
v1.15.0
Published
Deephaven Dashboard Core Plugins
Downloads
4,677
Keywords
Readme
@deephaven/dashboard-core-plugins
Core Deephaven plugins for use in dashboards
Install
npm install --save @deephaven/dashboard-core-pluginsUsage
import React, { Component } from 'react';
import Dashboard from '@deephaven/dashboard';
import { GridPlugin, ChartPlugin } from '@deephaven/dashboard';
import MyDashboardPlugin from './MyDashboardPlugin';
class Example extends Component {
render() {
return (
<Dashboard>
<GridPlugin />
<ChartPlugin />
<MyDashboardPlugin />
</Dashboard>
);
}
}Legal Notices
Deephaven Data Labs and any contributors grant you a license to the content of this repository under the Apache 2.0 License, see the LICENSE file.
