You are here

function system_charts_chart_color_schemes in Google Chart Tools: Image Charts 6

Same name and namespace in other branches
  1. 5 contrib/system_charts/system_charts.module \system_charts_chart_color_schemes()
  2. 7 system_charts/system_charts.module \system_charts_chart_color_schemes()

Implementation of hook_chart_color_schemes();

File

contrib/system_charts/system_charts.module, line 61
Provides core Drupal chart implementations.

Code

function system_charts_chart_color_schemes(&$colors) {
  $colors['watchdog_severity'] = array(
    'Error' => 'a00000',
    'Warning' => 'e06000',
    'Notice' => 'f0c040',
  );
}