djspillers
Posts: 1
Joined: Fri Feb 03, 2017 12:30 am

WordPress plugin and Advanced features

How do you enable the advanced editor features in the WordPress plugin? The advanced.min.js file is in the plugin, but I cannot figure out how to configure the WordPress plugin to let me use the advanced features.

Any help would be appreciated.

UPDATE: It looks like I can edit the highcharts-editor.php plugin file, and enqueue the highcharts-editor.advanced.min.js AFTER the highcharts-editor.min.js script:

wp_enqueue_script('highcharts-editor', plugin_dir_url(__FILE__) . 'highcharts-editor.min.js', array(
"highcharts-highstock",
"highcharts-framework",
"highcharts-more",
"highcharts-3d",
"highcharts-data",
"highcharts-exporting"
));
wp_enqueue_script("highcharts-advanced", plugin_dir_url(__FILE__) . "highcharts-editor.advanced.min.js");

Return to “Highcharts Usage”