wpdatatables_enqueue_scripts_after_chart_render

Contents

Description

This action is triggered after the chart rendering logic begins but before the chart template is included. This hook allows you to enqueue additional scripts or perform other tasks right after chart rendering is initiated in wpDataTables.

Usage

add_action('wpdatatables_enqueue_scripts_after_chart_render', 'my_custom_chart_scripts');

Parameters

None

Examples

function my_custom_chart_scripts() {
    // Your code here
}
add_action('wpdatatables_enqueue_scripts_after_chart_render', 'my_custom_chart_scripts');