/home/ivoiecob/ivoiceoutsourcing.net/wp-content/plugins/wpdatatables/templates/wpdatachart.inc.php
<?php defined('ABSPATH') or die('Access denied.'); ?>

    <script type="text/javascript">
        if (typeof (wpDataCharts) == 'undefined') wpDataCharts = {};
        wpDataCharts[<?php echo (int)$id; ?>] = {
            render_data: <?php echo $this->getJsonChartRenderData()?>,
            engine: "<?php echo esc_html($this->getEngine());?>",
            type: "<?php echo esc_html($this->_type); ?>",
            title: "<?php echo esc_html($this->_title); ?>",
            container: "wpDataChart_<?php echo (int)$id?>",
            follow_filtering: <?php echo (int)$this->_follow_filtering; ?>,
            wpdatatable_id: <?php echo (int)$this->getwpDataTableId() ?>,
            group_chart: <?php echo esc_html($this->_group_chart) ?>
        }
    </script>

<?php if (in_array($this->getEngine(), ['google'])) : ?>
    <div id="wpDataChart_<?php echo (int)$id ?>" class="<?php echo esc_attr($this->_type) ?>" style="width: 100%"></div>
<?php elseif ($this->getEngine() == 'chartjs') : ?>
    <div id="chartJSContainer_<?php echo (int)$id ?>">
        <canvas id="chartJSCanvas_<?php echo (int)$id ?>" aria-label="<?php echo esc_attr($this->_title) ?>"
                role="img"></canvas>
    </div>
<?php endif; ?>