Nebula Scatter plot plugins
v3.51.0
experimental
Scatter plot plugins API definitions
pluginArguments
namespaceexperimental
The arguments that are passed to the fn function of the plugin definition. For example, the layout and keys in the following plugin: const pointPlugin = { info: { name: 'point-plugin', type: 'component-definition', }, fn: ({ layout, keys }) => { const componentDefinition = { key: keys.components.point, type: 'point', settings: { // Some new settings that make use of // the data in layout and keys }, }; return componentDefinition; }, ;
Properties
keys experimental | The keys (references) to different types of chart internals |
layout experimental object | The layout from the enigma model. |