function chart_range_marker in Google Chart Tools: Image Charts 7
Same name and namespace in other branches
- 5 chart.module \chart_range_marker()
- 6 chart.module \chart_range_marker()
Range Marker
Parameters
int $start:
int $end:
bool $vertical:
string $color:
Return value
array
File
- ./
chart.module, line 1146 - Provides primary Drupal hook implementations.
Code
function chart_range_marker($start, $end, $vertical = TRUE, $color = '000000') {
return array(
'#start' => $start,
'#end' => $end,
'#vertical' => $vertical,
'#color' => $color,
);
}