You are here

function charts_api_example_chart_definition_foobar_alter in Charts 5.0.x

Same name and namespace in other branches
  1. 8.4 modules/charts_api_example/charts_api_example.module \charts_api_example_chart_definition_foobar_alter()

Implements hook_chart_definition_CHART_ID_alter().

File

modules/charts_api_example/charts_api_example.module, line 28
Charts API Example module.

Code

function charts_api_example_chart_definition_foobar_alter(&$chart) {
  $chart['chart']['backgroundColor'] = 'blue';
}