Skip to content

TinyMCE

cvasseng edited this page Sep 2, 2016 · 3 revisions

To integrate the Highcharts Editor with TinyMCE, either download the latest highcharts-editor.tinymce.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.tinymce.min.js and the editor CSS in your application, add the highcharts plugin to your tinyMCE initialization:

tinymce.init({
    selector: "textarea",
    plugins: [
        "highcharts highchartssvg noneditable"
    ]
});

tinymce.png