Skip to content

CKEditor

cvasseng edited this page Sep 28, 2016 · 2 revisions

To integrate the Highcharts Editor with CKEditor, either download the latest highcharts-editor.ckeditor.min.js from releases, or clone the repo and run npm install && gulp and copy it from the dist/ folder.

Once you've included highcharts-editor.ckeditor.min.js and the editor CSS in your application, add the highcharts plugin to your CKEditor initialization:

CKEDITOR.replace('editor', {
    allowedContent: true,
    extraPlugins: 'highcharts'
});