You are here

function charts_c3_charts_info in Charts 8

Implements hook_charts_info().

File

modules/charts_c3/charts_c3.module, line 18
Charts module integration with C3 library.

Code

function charts_c3_charts_info() {
  $info['c3'] = array(
    'label' => t('C3 Charts'),
    'types' => array(
      'area',
      'bar',
      'column',
      'line',
      'pie',
      'scatter',
    ),
  );
  return $info;
}