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