function fusioncharts_charts_info in Charts 7
Implementation of hook_charts_info().
Its a Charts module hook. It defines almost all aspects of a chart provider, like its name, what types of charts it can perform and what are the restrictions.
File
- fusioncharts/
fusioncharts.hooks.inc, line 17 - @author Bruno Massa http://drupal.org/user/67164
Code
function fusioncharts_charts_info() {
return array(
'fusioncharts' => array(
'file' => drupal_get_path('module', 'fusioncharts') . '/fusioncharts.inc',
'name' => t('FusionCharts'),
'render' => '_fusioncharts_charts_render',
'types' => array(
'line2D',
'hbar2D',
'hbar3D',
'vbar2D',
'vbar3D',
'pie2D',
'pie3D',
),
),
);
}