Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@toast-ui/editor-plugin-chart
Advanced tools
This is a plugin of TOAST UI Editor to render chart.
- node_modules/
- @toast-ui/
- editor-plugin-chart/
- dist/
- toastui-editor-plugin-chart.js
The bundle files under the cdn
folder include all dependencies.
- uicdn.toast.com/
- editor-plugin-chart/
- latest/
- toastui-editor-plugin-chart.js
- toastui-editor-plugin-chart.min.js
To use the plugin, @toast-ui/editor
must be installed.
Ref. Getting Started
$ npm install @toast-ui/editor-plugin-chart
Along with the plugin, the plugin's dependency style must be imported.
import 'tui-chart/dist/tui-chart.css';
import chart from '@toast-ui/editor-plugin-chart';
require('tui-chart/dist/tui-chart.css');
const chart = require('@toast-ui/editor-plugin-chart');
// ...
import Editor from '@toast-ui/editor';
import chart from '@toast-ui/editor-plugin-chart';
const instance = new Editor({
// ...
plugins: [chart]
});
// ...
import Viewer from '@toast-ui/editor/dist/toastui-editor-viewer';
import chart from '@toast-ui/editor-plugin-chart';
const instance = new Viewer({
// ...
plugins: [chart]
});
or
// ...
import Editor from '@toast-ui/editor';
import chart from '@toast-ui/editor-plugin-chart';
const instance = Editor.factory({
// ...
plugins: [chart]
});
To use the plugin, the CDN files(CSS, Script) of @toast-ui/editor
must be included.
<!-- CSS -->
<link rel="stylesheet" href="https://uicdn.toast.com/tui.chart/latest/tui-chart.min.css" />
<!-- Script -->
<script src="https://uicdn.toast.com/editor-plugin-chart/latest/toastui-editor-plugin-chart.min.js"></script>
const { Editor } = toastui;
const { chart } = Editor.plugin;
const instance = new Editor({
// ...
plugins: [chart]
});
const Viewer = toastui.Editor;
const { chart } = Viewer.plugin;
const instance = new Viewer({
// ...
plugins: [chart]
});
or
const { Editor } = toastui;
const { chart } = Editor.plugin;
const instance = Editor.factory({
// ...
plugins: [chart]
});
The chart
plugin can set options when used. Just add the plugin function and options related to the plugin to the array([pluginFn, pluginOptions]
) and push them to the plugins
option of the editor.
The following options are available in the chart
plugin.
These options are used to set the dimensions of the chart drawn in the editor.
Name | Type | Default Value | Description |
---|---|---|---|
width | number|string | 'auto' | Default width value |
height | number|string | 'auto' | Default height value |
minWidth | number | 0 | Minimum width value |
minHeight | number | 0 | Minimum height value |
maxWidth | number | Infinity | Maximum width value |
maxHeight | number | Infinity | Maximum height value |
// ...
import Editor from '@toast-ui/editor';
import chart from '@toast-ui/editor-plugin-chart';
const chartOptions = {
minWidth: 100,
maxWidth: 600,
minHeight: 100,
maxHeight: 300
};
const instance = new Editor({
// ...
plugins: [[chart, chartOptions]]
});
FAQs
TOAST UI Editor : Chart Plugin
The npm package @toast-ui/editor-plugin-chart receives a total of 560 weekly downloads. As such, @toast-ui/editor-plugin-chart popularity was classified as not popular.
We found that @toast-ui/editor-plugin-chart demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.