function flot_handler_field_datapoint::render in Flot 6
Same name and namespace in other branches
- 7 flot_views/views/flot_handler_field_datapoint.inc \flot_handler_field_datapoint::render()
The default render function.
File
- views/
flot_handler_field_datapoint.inc, line 286
Class
Code
function render($values) {
$series = check_plain($values->{$this->series_field});
$value = check_plain($values->{$this->value_field});
return "{$series}, {$value}";
}